]> gitweb.factorcode.org Git - factor.git/commitdiff
classes.mixin.tests: fix tc not to break when forget-tests? is on
authorBjörn Lindqvist <bjourne@gmail.com>
Tue, 3 Jan 2017 03:15:13 +0000 (04:15 +0100)
committerBjörn Lindqvist <bjourne@gmail.com>
Tue, 3 Jan 2017 03:15:57 +0000 (04:15 +0100)
core/classes/mixin/mixin-tests.factor

index 47e47dbc403d558535d98e5f9670234838a6cca8..539bcc012858d58edaaa83ce2f7bae140ce632db 100644 (file)
@@ -159,8 +159,8 @@ M: metaclass-change-mixin metaclass-change-generic ;
 ! redefine-mixin-class
 { t } [
     [
-        SYMBOL: foo1
-        foo1 { foo1 } redefine-mixin-class
+        SYMBOLS: foo1 foo2 ;
+        foo1 { foo2 } redefine-mixin-class
         foo1 "mixin" word-prop
     ] with-compilation-unit
 ] unit-test