From 0fbd858f28a44be591ef70a7ae36106bd5bf5734 Mon Sep 17 00:00:00 2001 From: asolwa <53942085+asolwa@users.noreply.github.com> Date: Thu, 26 Oct 2023 10:40:12 +0200 Subject: [PATCH] Fix test_bitset.cpp --- test/src/test_bitset.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/src/test_bitset.cpp b/test/src/test_bitset.cpp index cbc368e..88bce16 100644 --- a/test/src/test_bitset.cpp +++ b/test/src/test_bitset.cpp @@ -15,7 +15,7 @@ TEST(test_bitset, sanity) in(i).or_throw(); EXPECT_EQ(in.position(), 1u); - EXPECT_EQ(i, i); + EXPECT_EQ(o, i); } } // namespace test_bitset