aboutsummaryrefslogtreecommitdiff
path: root/UnitTesting/GTMAppKitUnitTestingUtilities.h
diff options
context:
space:
mode:
authorGravatar dmaclach <dmaclach@gmail.com>2018-11-13 11:13:35 -0800
committerGravatar GitHub <noreply@github.com>2018-11-13 11:13:35 -0800
commit84a312f5b53a73e77148428284d1a17d0eacf074 (patch)
tree7965acd1c2a5ecc13161988ebbb99499047b1e64 /UnitTesting/GTMAppKitUnitTestingUtilities.h
parent8a5be1dcdf93aed6d6b6f8e676ca218157b26283 (diff)
Fix up deprecations so that they use proper version numbering x_y vs x.y (#195)
Diffstat (limited to 'UnitTesting/GTMAppKitUnitTestingUtilities.h')
-rw-r--r--UnitTesting/GTMAppKitUnitTestingUtilities.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/UnitTesting/GTMAppKitUnitTestingUtilities.h b/UnitTesting/GTMAppKitUnitTestingUtilities.h
index d27c77d..39b9c33 100644
--- a/UnitTesting/GTMAppKitUnitTestingUtilities.h
+++ b/UnitTesting/GTMAppKitUnitTestingUtilities.h
@@ -72,9 +72,9 @@
// YES.
- (BOOL)gtm_runUntilDate:(NSDate *)date
context:(id<GTMUnitTestingRunLoopContext>)context
- NS_DEPRECATED(10.4, 10.8, 1.0, 7.0, "Please move to XCTestExpectations");
+ NS_DEPRECATED(10_4, 10_8, 1_0, 7_0, "Please move to XCTestExpectations");
// Calls -gtm_runUntilDate:context: with the timeout date set to 60 seconds.
- (BOOL)gtm_runUpToSixtySecondsWithContext:(id<GTMUnitTestingRunLoopContext>)context
- NS_DEPRECATED(10.4, 10.8, 1.0, 7.0, "Please move to XCTestExpectations");
+ NS_DEPRECATED(10_4, 10_8, 1_0, 7_0, "Please move to XCTestExpectations");
@end