From ca2298c1ff980ccbf8211feb741315aa0fca7342 Mon Sep 17 00:00:00 2001 From: bkaradzic Date: Wed, 16 Oct 2013 21:48:58 -0700 Subject: [PATCH] Cleanup. --- tests/macros.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/macros.cpp b/tests/macros.cpp index 738cbec..9863cb0 100644 --- a/tests/macros.cpp +++ b/tests/macros.cpp @@ -46,5 +46,5 @@ TEST(macros) CHECK_EQUAL(5, BX_VA_ARGS_COUNT(1, 2, 3, 4, 5) ); CHECK_EQUAL(6, BX_VA_ARGS_COUNT(1, 2, 3, 4, 5, 6) ); - CHECK(0 == strcmp(BX_STRINGIZE(TEST 1234 %^&*), "TEST 1234 %^&*") ); + CHECK_EQUAL(0, strcmp(BX_STRINGIZE(TEST 1234 %^&*), "TEST 1234 %^&*") ); }