summaryrefslogtreecommitdiff
path: root/MLKLowLevelTests.m
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-06-13 23:20:02 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-06-13 23:20:02 +0200
commit206e9d65a486e7f01e9fe32b2ef66bc4b0c22798 (patch)
tree23953d2aaf3d46e9ec41984efeaa4c560c672100 /MLKLowLevelTests.m
parent97ad5ac29b2ca40c5ec27f9057b28f8c9cb2b566 (diff)
Override -dealloc in every class.
Diffstat (limited to 'MLKLowLevelTests.m')
-rw-r--r--MLKLowLevelTests.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/MLKLowLevelTests.m b/MLKLowLevelTests.m
index 1de05ff..c47fd2a 100644
--- a/MLKLowLevelTests.m
+++ b/MLKLowLevelTests.m
@@ -38,7 +38,7 @@
-(id) testCons
{
id obj1 = @"Mulk.";
- id obj2 = [[NSMutableDictionary alloc] init];
+ id obj2 = AUTORELEASE ([[NSMutableDictionary alloc] init]);
MLKCons *cons2 = [MLKCons cons:obj1 with:obj2];
MLKCons *cons3 = [MLKCons cons:obj1 with:nil];