aboutsummaryrefslogtreecommitdiff
path: root/UnitTesting
diff options
context:
space:
mode:
authorGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2013-11-13 01:00:10 +0000
committerGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2013-11-13 01:00:10 +0000
commitc17345207f7d1dedb291d63b90d182759f519679 (patch)
tree86454f1ae73e447f8a4cf60ad313ccf7d1fb9ce3 /UnitTesting
parent8d4831d5bf6d0c714d7b03b07d8b393063a40916 (diff)
Get rid of extra semicolons in my previous change.
DELTA=2 (0 added, 0 deleted, 2 changed)
Diffstat (limited to 'UnitTesting')
-rw-r--r--UnitTesting/GTMCodeCoverageTestsST.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/UnitTesting/GTMCodeCoverageTestsST.m b/UnitTesting/GTMCodeCoverageTestsST.m
index 6ace55f..a73fdad 100644
--- a/UnitTesting/GTMCodeCoverageTestsST.m
+++ b/UnitTesting/GTMCodeCoverageTestsST.m
@@ -51,12 +51,12 @@ static int gSuiteCount = 0;
}
+ (void)suiteStarted:(NSNotification *)notification {
- #pragma unused (notification);
+ #pragma unused (notification)
gSuiteCount += 1;
}
+ (void)suiteStopped:(NSNotification *)notification {
- #pragma unused (notification);
+ #pragma unused (notification)
gSuiteCount -= 1;
if (gSuiteCount == 0) {
id application = [UIApplication sharedApplication];