From d64b75382f68c5f1ad976c3e2b9273cd3f9cf1fe Mon Sep 17 00:00:00 2001 From: DanielWit Date: Thu, 9 Nov 2023 17:38:55 +0000 Subject: [PATCH 1/2] initial commit to check everything is working correctly From 78dce0b73874e6393af603755b1fb71197d9995f Mon Sep 17 00:00:00 2001 From: DanielWit Date: Sat, 11 Nov 2023 10:19:07 +0000 Subject: [PATCH 2/2] modified test.cpp --- test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.cpp b/test.cpp index 633b451..586adcf 100644 --- a/test.cpp +++ b/test.cpp @@ -11,7 +11,7 @@ class GSTest : public ::testing::Test { // Test countElementsAboveThreshold function TEST_F(GSTest, CountElementsAboveThreshold) { - double threshold = 0.5; + double threshold = 0.6; double count = countElementsAboveThreshold(threshold); ASSERT_GE(count, 0.0); ASSERT_LE(count, 1.0);