aboutsummaryrefslogtreecommitdiff
path: root/AppKit/GTMUILocalizerTest.m
diff options
context:
space:
mode:
authorGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2009-09-08 21:00:27 +0000
committerGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2009-09-08 21:00:27 +0000
commite26b7d2fac4e31c5d8d31e996bf54e39d311e712 (patch)
tree905f9846f593fc5fed8363def18af854cca1199d /AppKit/GTMUILocalizerTest.m
parent59928442a95563ea2246fdebb7c85316e8428729 (diff)
[Author: dmaclach]
Fix up GTMUILocalizerTest which wasn't finding the nib with . in the name appropriately. R=thomasvl,alcor DELTA=5468 (2729 added, 2729 deleted, 10 changed)
Diffstat (limited to 'AppKit/GTMUILocalizerTest.m')
-rw-r--r--AppKit/GTMUILocalizerTest.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/AppKit/GTMUILocalizerTest.m b/AppKit/GTMUILocalizerTest.m
index 7ef4cd8..8c93b49 100644
--- a/AppKit/GTMUILocalizerTest.m
+++ b/AppKit/GTMUILocalizerTest.m
@@ -37,7 +37,7 @@
@"GTMUILocalizerWindow1State", nil);
#else
GTMAssertObjectStateEqualToStateNamed(window,
- @"GTMUILocalizerWindow1State.10.4", nil);
+ @"GTMUILocalizerWindow1State_10_4", nil);
#endif
NSBundle *bundle = [NSBundle bundleForClass:[self class]];
@@ -87,7 +87,7 @@
#if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5
return [self initWithWindowNibName:@"GTMUILocalizerTestWindow"];
#else
- return [self initWithWindowNibName:@"GTMUILocalizerTestWindow10.4"];
+ return [self initWithWindowNibName:@"GTMUILocalizerTestWindow_10_4"];
#endif // MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5
}