From dd77b72a8cc3bac8c73d4253dae707b40fd1cd79 Mon Sep 17 00:00:00 2001 From: Xingyu Date: Tue, 10 Feb 2026 11:51:46 -0500 Subject: [PATCH] normalize total score --- tests/testMoreIntegerP.cpp | 2 +- tests/testMoreRationalP.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/testMoreIntegerP.cpp b/tests/testMoreIntegerP.cpp index 2dfa476..e93f585 100644 --- a/tests/testMoreIntegerP.cpp +++ b/tests/testMoreIntegerP.cpp @@ -3,7 +3,7 @@ #include "IntegerP.h" using namespace std; -const float PTS = 1; +const float PTS = 3.0; float total = 0; /** diff --git a/tests/testMoreRationalP.cpp b/tests/testMoreRationalP.cpp index d460c7b..80de889 100644 --- a/tests/testMoreRationalP.cpp +++ b/tests/testMoreRationalP.cpp @@ -4,7 +4,7 @@ #include "RationalP.h" using namespace std; -const float PTS = 1.0; +const float PTS = 1.25; float total = 0; /** @@ -98,4 +98,4 @@ int main() { cout << "Total points: " << total << endl; cout << total << endl; // for the score recorder in the gitlab job return 0; -} \ No newline at end of file +} -- GitLab