File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
ydb/core/tx/replication/service Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -86,8 +86,8 @@ Y_UNIT_TEST_SUITE(RemoteTopicReader) {
8686 UNIT_ASSERT_VALUES_EQUAL (records.size (), 1 );
8787
8888 const auto & record = records.at (0 );
89- UNIT_ASSERT_VALUES_EQUAL (record.Offset , 0 );
90- UNIT_ASSERT_VALUES_EQUAL (record.Data , " message-1" );
89+ UNIT_ASSERT_VALUES_EQUAL (record.GetOffset () , 0 );
90+ UNIT_ASSERT_VALUES_EQUAL (record.GetData () , " message-1" );
9191 }
9292
9393 // trigger commit, write new data & kill reader
@@ -103,8 +103,8 @@ Y_UNIT_TEST_SUITE(RemoteTopicReader) {
103103 UNIT_ASSERT_VALUES_EQUAL (records.size (), 1 );
104104
105105 const auto & record = records.at (0 );
106- UNIT_ASSERT_VALUES_EQUAL (record.Offset , 1 );
107- UNIT_ASSERT_VALUES_EQUAL (record.Data , " message-2" );
106+ UNIT_ASSERT_VALUES_EQUAL (record.GetOffset () , 1 );
107+ UNIT_ASSERT_VALUES_EQUAL (record.GetData () , " message-2" );
108108 }
109109 }
110110}
You can’t perform that action at this time.
0 commit comments