diff --git a/include/criterion/assert.h b/include/criterion/assert.h index 66e0547..a5a6bed 100644 --- a/include/criterion/assert.h +++ b/include/criterion/assert.h @@ -55,8 +55,8 @@ enum criterion_assert_kind { // Common asserts -# define assert(Condition, ...) assert_impl(FATAL, (Condition), "" __VA_ARGS__) -# define expect(Condition, ...) assert_impl(NORMAL, (Condition), "" __VA_ARGS__) +# define assert(Condition, ...) assert_impl(FATAL, Condition, "" __VA_ARGS__) +# define expect(Condition, ...) assert_impl(NORMAL, Condition, "" __VA_ARGS__) # define assert_not(Condition, ...) assert(!(Condition), "" __VA_ARGS__) # define expect_not(Condition, ...) expect(!(Condition), "" __VA_ARGS__)