]> gitweb.factorcode.org Git - factor.git/commitdiff
add using
authorDoug Coleman <doug.coleman@gmail.com>
Fri, 13 Feb 2009 03:45:34 +0000 (21:45 -0600)
committerDoug Coleman <doug.coleman@gmail.com>
Fri, 13 Feb 2009 03:45:34 +0000 (21:45 -0600)
basis/bitstreams/bitstreams-tests.factor

index 8fac3f52f9c7db0b48a4cd12f5754020bc3e7c77..2aadf7b02d5d42d7aa0f21e5e6b46f78bc7c6fa0 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2009 Doug Coleman.
 ! See http://factorcode.org/license.txt for BSD license.
 USING: accessors bitstreams io io.streams.string kernel tools.test
-grouping compression.lzw multiline ;
+grouping compression.lzw multiline byte-arrays ;
 IN: bitstreams.tests
 
 [ 1 ]
@@ -16,7 +16,7 @@ IN: bitstreams.tests
 [ B{ 254 } ]
 [
     <string-writer> <bitstream-writer> 254 8 rot
-    [ write-bits ] keep stream>> >byte-array
+    [ write-bits ] keep output>> >byte-array
 ] unit-test