Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
fnc12 committed Nov 22, 2023
1 parent 808df3b commit b391cdc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/storage_non_crud_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -740,17 +740,17 @@ TEST_CASE("migrations") {
decltype(allUsers) expectedUsers;
expectedUsers.push_back(User{1, "Sertab", "Erener"});
expectedUsers.push_back(User{2, "Inna", ""});
// REQUIRE_THAT(allUsers, UnorderedEquals(expectedUsers));
// REQUIRE(migrationCallsCount == 1);
// REQUIRE_THAT(allUsers, UnorderedEquals(expectedUsers));
// REQUIRE(migrationCallsCount == 1);
}
storage.migrate_to(1);
{
auto allUsers = storage.get_all<User>();
decltype(allUsers) expectedUsers;
expectedUsers.push_back(User{1, "Sertab", "Erener"});
expectedUsers.push_back(User{2, "Inna", ""});
// REQUIRE_THAT(allUsers, UnorderedEquals(expectedUsers));
// REQUIRE(migrationCallsCount == 1);
// REQUIRE_THAT(allUsers, UnorderedEquals(expectedUsers));
// REQUIRE(migrationCallsCount == 1);
}
}
}

0 comments on commit b391cdc

Please sign in to comment.