Skip to content

Commit

Permalink
fix #362
Browse files Browse the repository at this point in the history
  • Loading branch information
Neargye committed Jun 28, 2024
1 parent bf3c74a commit f2ad79f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_containers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ TEST_CASE("containers_set") {
REQUIRE(color_set_filled.size() == 3);
REQUIRE(magic_enum::enum_count<Color>() == color_set_filled.size());

magic_enum::containers::set color_set_not_const {Color::RED, Color::GREEN, Color::BLUE};
magic_enum::containers::set color_set_not_const = {Color::RED, Color::GREEN, Color::BLUE};
REQUIRE_FALSE(color_set_not_const.empty());
REQUIRE(color_set_not_const.size() == 3);
REQUIRE(magic_enum::enum_count<Color>() == color_set_not_const.size());
Expand Down

0 comments on commit f2ad79f

Please sign in to comment.