diff --git a/tests/unit_tests.cc b/tests/unit_tests.cc index 72a098c46..e60f4b4f6 100644 --- a/tests/unit_tests.cc +++ b/tests/unit_tests.cc @@ -248,7 +248,7 @@ static void test_assertion_catching() list = string_split(empty, " "); Assert(assertion_caught == 1); - Assert( list == NULL ); + Assert(list == NULL); /* Restore everything */ codes_set_codes_assertion_failed_proc(NULL); @@ -858,15 +858,17 @@ static void test_grib_get_binary_scale_fact() { printf("Running %s ...\n", __func__); int err = 0; - long result = 0; + long result = grib_get_binary_scale_fact(INFINITY, 0, 0, &err); + Assert(err == GRIB_OUT_OF_RANGE); + Assert(result == 0); result = grib_get_binary_scale_fact(100, 0, 65, &err); // bpv too big - Assert( err == GRIB_OUT_OF_RANGE); - Assert( result == 0 ); + Assert(err == GRIB_OUT_OF_RANGE); + Assert(result == 0); result = grib_get_binary_scale_fact(100, 0, 0, &err); // bpv 0 - Assert( err == GRIB_ENCODING_ERROR); - Assert( result == 0 ); + Assert(err == GRIB_ENCODING_ERROR); + Assert(result == 0); } static void test_filepool()