From f406e40d118d4cd2a282d8036329c6b4a75583f8 Mon Sep 17 00:00:00 2001 From: Elias Kosunen Date: Tue, 21 May 2024 16:27:39 +0300 Subject: [PATCH] Fix ArgsTest checking the value of an uninitialized float --- tests/unittests/args_test.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/unittests/args_test.cpp b/tests/unittests/args_test.cpp index 78da0cd7..8a1b289b 100644 --- a/tests/unittests/args_test.cpp +++ b/tests/unittests/args_test.cpp @@ -86,5 +86,4 @@ TEST(ArgsTest, ArgStore) auto tup = std::move(store).get_tuple(); EXPECT_EQ(std::get<0>(tup), 42); - EXPECT_DOUBLE_EQ(std::get<1>(tup), 0.0); }