From 5c8db2bb7a19d3c731bd0818a1843307196f69bd Mon Sep 17 00:00:00 2001 From: mvandervoord Date: Sun, 22 Feb 2009 00:04:53 +0000 Subject: [PATCH] git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@20 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e --- src/UnityHelper.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/UnityHelper.h b/src/UnityHelper.h index b0090a6..75e962b 100644 --- a/src/UnityHelper.h +++ b/src/UnityHelper.h @@ -9,7 +9,7 @@ void AssertEqualCharArray(const char expected[], const char actual[], const int void AssertFloatArrayWithin(const float tolerance, const float* expected, const float* actual, const unsigned int length); void AssertEqualExampleStruct(const EXAMPLE_STRUCT_T expected, const EXAMPLE_STRUCT_T actual); -#define TEST_ASSERT_EQUAL_UINT_ARRAY(expected, actual, length) {AssertEqualUintArray(expected, actual, length);} +#define TEST_ASSERT_EQUAL_uint32_ARRAY(expected, actual, length) {AssertEqualUintArray(expected, actual, length);} #define TEST_ASSERT_EQUAL_INT_ARRAY(expected, actual, length) {AssertEqualIntArray(expected, actual, length);} #define TEST_ASSERT_FLOAT_ARRAY_WITHIN(tolerance, expected, actual, length) {AssertFloatArrayWithin(tolerance, expected, actual, length);} #define TEST_ASSERT_EQUAL_EXAMPLE_STRUCT_T(expected, actual) {AssertEqualExampleStruct(expected, actual);}