Skip to content

Commit c3a4f10

Browse files
committed
test: test_util.c: fix make check when JQ is not enabled
correct compact serialization format comparison Signed-off-by: Hans Zandbelt <[email protected]>
1 parent 6eda9b0 commit c3a4f10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_util.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ START_TEST(test_util_jq) {
399399
ck_assert_str_eq(oidc_util_jq_filter(r, json, "bogus"), "{\"jan\":\"jan\",\"piet\":\"piet\"}");
400400
ck_assert_str_eq(oidc_util_jq_filter(r, json, ".jan"), "\"jan\"");
401401
#else
402-
ck_assert_str_eq(oidc_util_jq_filter(r, json, ".jan"), "{\"jan\": \"jan\",\"piet\":\"piet\"}");
402+
ck_assert_str_eq(oidc_util_jq_filter(r, json, ".jan"), "{\"jan\":\"jan\",\"piet\":\"piet\"}");
403403
#endif
404404
json_decref(json);
405405
}

0 commit comments

Comments
 (0)