Skip to content

Commit

Permalink
Switch coment from C++ to C style
Browse files Browse the repository at this point in the history
Resolves CI issues
  • Loading branch information
Logan Buth committed May 23, 2024
1 parent ddb7df0 commit a690320
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/misc_tests.c
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ static void cjson_replace_item_in_object_should_preserve_name(void)
TEST_ASSERT_TRUE(root->child == replacement);
TEST_ASSERT_EQUAL_STRING("child", replacement->string);

// now test the same, but with replaceitemviapointer
/* now test the same, but with replaceitemviapointer */
child = cJSON_GetObjectItemCaseSensitive(root, "child");
TEST_ASSERT_NOT_NULL(child);
replacement = cJSON_CreateNumber(3);
Expand Down

0 comments on commit a690320

Please sign in to comment.