From 8115187fd77ec7c657e713fcf267e21adb5dc50b Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Mon, 18 Feb 2013 21:26:36 +0100 Subject: [PATCH] isup: FIx shadowing of the class variable --- ISUPTests.st | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ISUPTests.st b/ISUPTests.st index 73a396b..85b341e 100644 --- a/ISUPTests.st +++ b/ISUPTests.st @@ -45,8 +45,8 @@ TestCase subclass: ISUPGeneratedTest [ self playWith: each]. "same thing once more" - struct fieldsDo: [:type :class | - self playWith: class]. + struct fieldsDo: [:type :field_class | + self playWith: field_class]. ]. ]