Merge pull request #15211 from pguibert6WIND/json_compilation_pceplib

pceplib: fix compilation error
This commit is contained in:
Donald Sharp 2024-01-24 08:50:30 -05:00 committed by GitHub
commit e3e4232102
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -113,7 +113,7 @@ void test_create_subgroup_counter()
CU_ASSERT_FALSE(create_subgroup_counter(NULL, counter_id, counter_name,
counter_name_json));
CU_ASSERT_FALSE(create_subgroup_counter(subgroup, counter_id + 1,
counter_name));
counter_name, counter_name_json));
CU_ASSERT_FALSE(
create_subgroup_counter(subgroup, counter_id, NULL, NULL));
CU_ASSERT_EQUAL(subgroup->num_counters, 0);