aboutsummaryrefslogtreecommitdiff
path: root/UnitTesting/GTMSenTestCase.h
diff options
context:
space:
mode:
authorGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2009-09-16 17:34:59 +0000
committerGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2009-09-16 17:34:59 +0000
commit4d9b07dbd57a18008eb239a33021dbf868ceef28 (patch)
treee1f60ce1b6330fc908f9fbd347206f7c646e8585 /UnitTesting/GTMSenTestCase.h
parent080b28284751ae178608f45268765f6e0ae94287 (diff)
[Author: altse]
Fix syntax error in STAssertEqualObjects R=thomasvl DELTA=1 (0 added, 0 deleted, 1 changed)
Diffstat (limited to 'UnitTesting/GTMSenTestCase.h')
-rw-r--r--UnitTesting/GTMSenTestCase.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/UnitTesting/GTMSenTestCase.h b/UnitTesting/GTMSenTestCase.h
index 58c0594..c45146e 100644
--- a/UnitTesting/GTMSenTestCase.h
+++ b/UnitTesting/GTMSenTestCase.h
@@ -487,7 +487,7 @@ do { \
id a2value = (a2); \
if (a1value == a2value) continue; \
if ((strcmp(@encode(__typeof__(a1value)), @encode(id)) == 0) && \
- (strcmp(@encode(__typeof__(a2value)),@encode(id) == 0) && \
+ (strcmp(@encode(__typeof__(a2value)), @encode(id)) == 0) && \
[(id)a1value isEqual: (id)a2value]) continue; \
[self failWithException:[NSException failureInEqualityBetweenObject: a1value \
andObject: a2value \