Skip to content

Commit

Permalink
Merge pull request #405 from chillfig/clean_macro
Browse files Browse the repository at this point in the history
Fix #351, Removes semi-colon in TEST_CF_ADD macro
  • Loading branch information
dzbaker authored Sep 12, 2023
2 parents 5df892e + 835d4ef commit afbc225
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unit-test/utilities/cf_test_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ void cf_tests_Setup(void);
void cf_tests_Teardown(void);

/* Helper macro to avoid coping test name */
#define TEST_CF_ADD(test) UtTest_Add(test, cf_tests_Setup, cf_tests_Teardown, #test);
#define TEST_CF_ADD(test) UtTest_Add(test, cf_tests_Setup, cf_tests_Teardown, #test)

void TestUtil_InitializeRandomSeed(void);

Expand Down

0 comments on commit afbc225

Please sign in to comment.