Skip to content

Commit

Permalink
switch to assert
Browse files Browse the repository at this point in the history
  • Loading branch information
alandekok committed Jul 10, 2023
1 parent 1d49001 commit b3b62fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/util/pair_tests.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit b3b62fe

Please sign in to comment.