Skip to content

Commit

Permalink
import: TVector compilation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jepett0 committed Jan 22, 2025
1 parent 65e6fd3 commit 369523f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ydb/services/ydb/backup_ut/ydb_backup_ut.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ NQuery::TExecuteQueryResult GetTableContent(NQuery::TSession& session, const cha
));
}

void CompareResults(const TVector<TResultSet>& first, const TVector<TResultSet>& second) {
void CompareResults(const std::vector<TResultSet>& first, const std::vector<TResultSet>& second) {
UNIT_ASSERT_VALUES_EQUAL(first.size(), second.size());
for (size_t i = 0; i < first.size(); ++i) {
UNIT_ASSERT_STRINGS_EQUAL(
Expand Down

0 comments on commit 369523f

Please sign in to comment.