aboutsummaryrefslogtreecommitdiff
path: root/Foundation/GTMLogger+ASLTest.m
diff options
context:
space:
mode:
Diffstat (limited to 'Foundation/GTMLogger+ASLTest.m')
-rw-r--r--Foundation/GTMLogger+ASLTest.m3
1 files changed, 1 insertions, 2 deletions
diff --git a/Foundation/GTMLogger+ASLTest.m b/Foundation/GTMLogger+ASLTest.m
index 97f7e29..cd32484 100644
--- a/Foundation/GTMLogger+ASLTest.m
+++ b/Foundation/GTMLogger+ASLTest.m
@@ -68,7 +68,6 @@ static NSMutableArray *gDummyLog; // weak
// dummy writer will save the messages w/ @level concatenated. The "level"
// will be the ASL level, not the GTMLogger level. GTMLogASLWriter will log
// all
- NSArray *log = gDummyLog;
NSArray *expected = [NSArray arrayWithObjects:
@"unknown@5",
@"debug@5",
@@ -77,7 +76,7 @@ static NSMutableArray *gDummyLog; // weak
@"assert@1",
nil];
- STAssertEqualObjects(log, expected, nil);
+ STAssertEqualObjects(gDummyLog, expected, nil);
gDummyLog = nil;
}