]> gitweb.factorcode.org Git - factor.git/commitdiff
remove irrelevant undo test from classes.struct
authorJoe Groff <arcata@gmail.com>
Tue, 18 Aug 2009 15:25:47 +0000 (10:25 -0500)
committerJoe Groff <arcata@gmail.com>
Tue, 18 Aug 2009 15:25:47 +0000 (10:25 -0500)
extra/classes/struct/struct-tests.factor

index 0d4f97a70a52418182857465d7c7823c38f82dcb..9a2d3a80743e23c1656cba060e1ee38ed4a0aa39 100644 (file)
@@ -1,6 +1,6 @@
 ! (c)Joe Groff bsd license
 USING: accessors alien.c-types classes.c-types classes.struct
-combinators inverse kernel math tools.test ;
+combinators kernel math tools.test ;
 IN: classes.struct.tests
 
 STRUCT: foo
@@ -30,8 +30,6 @@ STRUCT: bar
 [ 7654 ] [ S{ foo f 98 7654 f } y>> ] unit-test
 [ 7654 ] [ S{ foo { y 7654 } } y>> ] unit-test
 
-[ 98 7654 t ] [ S{ foo f 98 7654 t } [ foo <struct-boa> ] undo ] unit-test
-
 UNION-STRUCT: float-and-bits
     { f single-float }
     { bits uint } ;