]> gitweb.factorcode.org Git - factor.git/commitdiff
compiler.tests.redefine23: test wasn't testing anything
authorSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Tue, 13 Apr 2010 07:56:48 +0000 (00:56 -0700)
committerSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Tue, 13 Apr 2010 07:56:48 +0000 (00:56 -0700)
basis/compiler/tests/redefine23.factor

index e6061937b6c1bc18756f504b99cbdbb4c87b982e..dafdc2d1af091df7460fc9f0c63cfef65e9fdb0b 100644 (file)
@@ -1,6 +1,7 @@
 IN: compiler.tests.redefine23
 USING: classes.struct specialized-arrays alien.c-types sequences
 compiler.units vocabs tools.test ;
+FROM: specialized-arrays.private => specialized-array-vocab ;
 
 STRUCT: my-struct { x int } ;
 SPECIALIZED-ARRAY: my-struct
@@ -8,6 +9,6 @@ SPECIALIZED-ARRAY: my-struct
 
 [ ] [
     [
-        "specialized-arrays.instances.compiler.tests.redefine23" forget-vocab
+        my-struct specialized-array-vocab forget-vocab
     ] with-compilation-unit
 ] unit-test