Skip to content

Commit

Permalink
test: code coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
skypjack committed May 8, 2024
1 parent 2f8b483 commit f7e533d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/entt/entity/table.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ TEST(Table, Indexing) {
table.emplace(0, '\0');

ASSERT_EQ(table[0u], std::make_tuple(3, 'c'));
ASSERT_EQ(table[1u], std::make_tuple(0, '\0'));
ASSERT_EQ(std::as_const(table)[1u], std::make_tuple(0, '\0'));
}

ENTT_DEBUG_TEST(TableDeathTest, Indexing) {
Expand Down

0 comments on commit f7e533d

Please sign in to comment.