aboutsummaryrefslogtreecommitdiff
path: root/UnitTesting/GTMUnitTestDevLog.m
diff options
context:
space:
mode:
Diffstat (limited to 'UnitTesting/GTMUnitTestDevLog.m')
-rw-r--r--UnitTesting/GTMUnitTestDevLog.m6
1 files changed, 3 insertions, 3 deletions
diff --git a/UnitTesting/GTMUnitTestDevLog.m b/UnitTesting/GTMUnitTestDevLog.m
index f2f9418..980fb93 100644
--- a/UnitTesting/GTMUnitTestDevLog.m
+++ b/UnitTesting/GTMUnitTestDevLog.m
@@ -199,7 +199,7 @@ static BOOL gTrackingEnabled = NO;
arguments:argList] autorelease];
va_end(argList);
NSString *pattern = [GTMRegex escapedPatternForString:string];
- [self expect:1 casesOfPattern:pattern];
+ [self expect:1 casesOfPattern:@"%@", pattern];
}
@@ -217,7 +217,7 @@ static BOOL gTrackingEnabled = NO;
arguments:argList] autorelease];
va_end(argList);
NSString *pattern = [GTMRegex escapedPatternForString:string];
- [self expect:n casesOfPattern:pattern];
+ [self expect:n casesOfPattern:@"%@", pattern];
}
+ (void)expect:(NSUInteger)n casesOfPattern:(NSString*)format, ... {
@@ -240,7 +240,7 @@ casesOfPattern:(NSString*)format
[patterns addObject:regex];
}
}
-}
+}
+ (void)verifyNoMoreLogsExpected {
@synchronized(self) {