Skip to content

Commit

Permalink
Removed unused NSLogs.
Browse files Browse the repository at this point in the history
  • Loading branch information
akisute committed Mar 17, 2012
1 parent eb8938f commit 9b64c7c
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions SenAsyncTestCase.m
Expand Up @@ -42,12 +42,10 @@ - (void)waitForStatus:(SenAsyncTestCaseStatus)status timeout:(NSTimeInterval)tim
self.expectedStatus = status;
self.loopUntil = [NSDate dateWithTimeIntervalSinceNow:timeout];

NSLog(@"Wait loop start");
while (!self.notified && [self.loopUntil timeIntervalSinceNow] > 0) {
[[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode
beforeDate:self.loopUntil];
}
NSLog(@"Wait loop finished");

// Only assert when notified. Do not assert when timed out
// Fail if not notified
Expand Down Expand Up @@ -75,7 +73,6 @@ - (void)notify:(SenAsyncTestCaseStatus)status
self.notifiedStatus = status;
// self.notified must be set at the last of this method
self.notified = YES;
NSLog(@"Notified");
}

@end

0 comments on commit 9b64c7c

Please sign in to comment.