From: Alan T. DeKok Date: Mon, 10 Jul 2023 20:39:01 +0000 (-0400) Subject: switch to assert X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b3b62feb5eb01ab0182b5962265b26b7715019e4;p=thirdparty%2Ffreeradius-server.git switch to assert --- diff --git a/src/lib/util/pair_tests.c b/src/lib/util/pair_tests.c index 6a1d58533b4..5282884aa36 100644 --- a/src/lib/util/pair_tests.c +++ b/src/lib/util/pair_tests.c @@ -148,7 +148,7 @@ static void test_fr_pair_afrom_da_nested(void) TEST_CASE("Top list does have the tlv attribute"); parent = fr_pair_find_by_da(&local_pairs, NULL, fr_dict_attr_test_tlv); - TEST_CHECK(parent != NULL); + TEST_ASSERT(parent != NULL); TEST_CASE("Parent list does have the tlv child attribute"); TEST_CHECK(fr_pair_find_by_da(&parent->vp_group, NULL, fr_dict_attr_test_tlv_string) == vp);