aboutsummaryrefslogtreecommitdiff
path: root/UnitTesting
diff options
context:
space:
mode:
authorGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2012-07-26 14:00:20 +0000
committerGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2012-07-26 14:00:20 +0000
commit222096014fbfbe56700c98ec99cffbf87fc6ef33 (patch)
tree982832fda12d381c1cbe81e69ea53ddfcbfdec3e /UnitTesting
parentbc08c2f3dce2dabf121bd0bc1c286023b1ec0a51 (diff)
[Author: thomasvl]
Fix up one more format string TBR=dmaclach
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 b14bd7a..f5156e4 100644
--- a/UnitTesting/GTMSenTestCase.h
+++ b/UnitTesting/GTMSenTestCase.h
@@ -503,7 +503,7 @@ do { \
desc = [NSString stringWithFormat:@"%@ With Accuracy %0.3f: %@", string, (float)accuracyvalue, desc]; \
[self failWithException:[NSException failureInFile:[NSString stringWithUTF8String:__FILE__] \
atLine:__LINE__ \
- withDescription:desc]]; \
+ withDescription:@"%@", desc]]; \
break; \
} \
} \