aboutsummaryrefslogtreecommitdiff
path: root/Foundation
diff options
context:
space:
mode:
authorGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2009-11-11 15:01:11 +0000
committerGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2009-11-11 15:01:11 +0000
commit10abb9838df96999a22b6f47cabee25078c35980 (patch)
tree09a1aa2777fc17276a6e14df7116e9a6b67c6944 /Foundation
parentabcffbb8a75dd1a31b5abfa0fc0248a24eab3583 (diff)
[Author: thomasvl]
Doesn't fully pass, but updated constants. R=dmaclach DELTA=2 (0 added, 0 deleted, 2 changed)
Diffstat (limited to 'Foundation')
-rw-r--r--Foundation/GTMObjC2RuntimeTest.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/Foundation/GTMObjC2RuntimeTest.m b/Foundation/GTMObjC2RuntimeTest.m
index 7a88f23..626a625 100644
--- a/Foundation/GTMObjC2RuntimeTest.m
+++ b/Foundation/GTMObjC2RuntimeTest.m
@@ -344,10 +344,10 @@ AT_REQUIRED
// We made our Tiger implementation the same as the SnowLeopard
// implementation.
// Logged as radar 5572981.
- if (![GTMSystemVersion isLeopard]) {
+ if (![GTMSystemVersion isLeopardOrGreater]) {
STAssertNULL(method_setImplementation(nil, nil), nil);
}
- if ([GTMSystemVersion isBuildGreaterThan:kGTMSystemBuild10_6_0_WWDC]) {
+ if ([GTMSystemVersion isSnowLeopardOrGreater]) {
STAssertNULL(method_setImplementation(nil, newImp), nil);
}