From 3589b8c280e852abbcbd28b0447d7e7c95278336 Mon Sep 17 00:00:00 2001 From: shahramn Date: Wed, 18 Dec 2024 12:19:59 +0000 Subject: [PATCH] SD-103535: Revert --- tests/unit_tests.cc | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) 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()