From 31839cb9167b5652a80d1b852fc738b922a73526 Mon Sep 17 00:00:00 2001 From: Thomas Hader Date: Mon, 7 Oct 2024 15:50:02 +0200 Subject: [PATCH] fixed whitespaces --- test/polyxx/test_interval.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/polyxx/test_interval.cpp b/test/polyxx/test_interval.cpp index 016bc59..d871099 100644 --- a/test/polyxx/test_interval.cpp +++ b/test/polyxx/test_interval.cpp @@ -70,13 +70,13 @@ TEST_CASE("interval::count_int") { CHECK(count_int(Interval()) == 1); CHECK(count_int(Interval(Rational(1,2))) == 0); CHECK(count_int(Interval(Rational(3,4), Rational(5,4))) == 1); - CHECK(count_int(Interval(0, false, 2, false)) == 3); - CHECK(count_int(Interval(0,LONG_MAX)) == LONG_MAX - 1); - CHECK(count_int(Interval(0,false, LONG_MAX, true)) == LONG_MAX); - CHECK(count_int(Interval(0,false, LONG_MAX, false)) == LONG_MAX); + CHECK(count_int(Interval(0,false,2, false)) == 3); + CHECK(count_int(Interval(0,LONG_MAX)) == LONG_MAX-1); + CHECK(count_int(Interval(0,false,LONG_MAX,true)) == LONG_MAX); + CHECK(count_int(Interval(0,false,LONG_MAX,false)) == LONG_MAX); CHECK(count_int(Interval(-1,LONG_MAX)) == LONG_MAX); CHECK(count_int(Interval(-2,LONG_MAX)) == LONG_MAX); - CHECK(count_int(Interval(LONG_MIN, LONG_MAX)) == LONG_MAX); + CHECK(count_int(Interval(LONG_MIN,LONG_MAX)) == LONG_MAX); } TEST_CASE("interval::pick_value") {