From 17bef5b06a65aba2ac6b10aaaf954397c643e5ac Mon Sep 17 00:00:00 2001 From: Arthur Jeulin Date: Sun, 23 Jun 2024 02:47:39 +0200 Subject: [PATCH] Correct test --- test/units/demo_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/units/demo_test.cpp b/test/units/demo_test.cpp index 0489b7a..b6a6293 100644 --- a/test/units/demo_test.cpp +++ b/test/units/demo_test.cpp @@ -28,7 +28,7 @@ TEST(HelloTest, BasicAssertions) { } TEST(TestTopic, MoreEqualityTests){ - EXPECT_EQ(GetMeaningOfLife(),0) << "Oh no, a mistake! "; + EXPECT_EQ(GetMeaningOfLife(),42); EXPECT_FLOAT_EQ(23.23F,23.23F); }