From 4f162128405f04095298bfa49aec938803cccfec Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Tue, 13 Apr 2010 00:56:48 -0700 Subject: [PATCH] compiler.tests.redefine23: test wasn't testing anything --- basis/compiler/tests/redefine23.factor | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/basis/compiler/tests/redefine23.factor b/basis/compiler/tests/redefine23.factor index e6061937b6..dafdc2d1af 100644 --- a/basis/compiler/tests/redefine23.factor +++ b/basis/compiler/tests/redefine23.factor @@ -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