Skip to content

Commit

Permalink
fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
skypjack committed Jun 18, 2017
1 parent 28448e1 commit 29e6c29
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/registry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,11 @@ TEST(DefaultRegistry, Copy) {
ASSERT_TRUE(registry.has<char>(e2));
ASSERT_FALSE(registry.has<double>(e2));

ASSERT_FALSE(registry.empty<int>());
ASSERT_FALSE(registry.empty<char>());
ASSERT_TRUE(registry.empty<double>());

registry.reset();
}

TEST(DefaultRegistry, ViewSingleComponent) {
Expand Down

0 comments on commit 29e6c29

Please sign in to comment.