diff --git a/unittest.cpp b/unittest.cpp index a9ba7e5..0dc9a52 100644 --- a/unittest.cpp +++ b/unittest.cpp @@ -7,6 +7,6 @@ TEST_CASE("distinct positive numbers") { double min = 0; double max = 0; find_minmax({1, 2}, min, max); - CHECK(min == 1); + CHECK(min == 3); CHECK(max == 2); }