diff -r bf8ab7bb74ff -r 583718dd4cf3 test/main.c --- a/test/main.c Tue Oct 02 13:43:17 2012 +0200 +++ b/test/main.c Thu Oct 04 11:37:23 2012 +0200 @@ -53,13 +53,13 @@ UCX_TEST_IMPLEMENT(testTestSuitePositive) { UCX_TEST_BEGIN - UCX_TEST_ASSERT(2*2 == 4, "the test framework fails") + UCX_TEST_ASSERT(2*2 == 4, "the test framework fails"); UCX_TEST_END } UCX_TEST_IMPLEMENT(testTestSuiteNegative) { UCX_TEST_BEGIN - UCX_TEST_ASSERT(2*(-2) == 4, "the test framework works") + UCX_TEST_ASSERT(2*(-2) == 4, "the test framework works"); UCX_TEST_END }