aboutsummaryrefslogtreecommitdiff
path: root/UnitTesting
diff options
context:
space:
mode:
authorGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2014-07-30 20:00:06 +0000
committerGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2014-07-30 20:00:06 +0000
commit0f81b5483f17785f06a8ad4c4d56de227f983f87 (patch)
tree4562493cc61ceac0f6e8b0233f7dce202a06eabb /UnitTesting
parent89824efe6bf28b4bfd8c66badfe8d3f70501e8cc (diff)
Typo in XCTAssertEqualCStrings
Means it doens't compile when that macro is used. DELTA=1 (0 added, 0 deleted, 1 changed) DELTA_BY_EXTENSION=h=1
Diffstat (limited to 'UnitTesting')
-rw-r--r--UnitTesting/GTMSenTestCase.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/UnitTesting/GTMSenTestCase.h b/UnitTesting/GTMSenTestCase.h
index af8ad47..a5fa2ed 100644
--- a/UnitTesting/GTMSenTestCase.h
+++ b/UnitTesting/GTMSenTestCase.h
@@ -388,7 +388,7 @@ NSString *STComposeString(NSString *, ...);
const char* _a1value = (a1); \
const char* _a2value = (a2); \
if (_a1value != _a2value && strcmp(_a1value, _a2value) != 0) { \
- failure = @""; \
+ _failure = @""; \
}\
} \
@catch (NSException *_exception) { \