Skip to content

Commit

Permalink
Clean up tests with use of new operator!=
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadlener committed Feb 20, 2024
1 parent d929349 commit 2b6872b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unittests/unittest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ TEST_CASE("Equality", "[basics]") {
// Empty handles always compare equal
REQUIRE(clu == clu2);
// They never compare equal to a non-empty handle
REQUIRE(!(clu == cluster));
REQUIRE(clu != cluster);
}

TEST_CASE("UserInitialization", "[basics][code-gen]") {
Expand Down

0 comments on commit 2b6872b

Please sign in to comment.