From d589f7d6317b2355d43f2b1fab4b3611e4b4649c Mon Sep 17 00:00:00 2001 From: elaguerta-nr <148913307+elaguerta-nr@users.noreply.github.com> Date: Mon, 1 Jul 2024 18:47:08 -0700 Subject: [PATCH] Update metrics_test.cpp commit to test codeql config. no plans to merge. --- src/tests/metrics_test.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/tests/metrics_test.cpp b/src/tests/metrics_test.cpp index 3f5c075..27e8d1c 100644 --- a/src/tests/metrics_test.cpp +++ b/src/tests/metrics_test.cpp @@ -16,9 +16,7 @@ TEST(MetricTests, DefaultConstruction) { EXPECT_EQ(0, m.total()); EXPECT_EQ(0, m.min()); - EXPECT_EQ(0, m.max()); - EXPECT_EQ(0, m.sumOfSquares()); - EXPECT_EQ(0, m.count()); + EXPECT_EQ(0, m.max()); // expect less } TEST(MetricTests, PositiveAddition) {