]> gitweb.factorcode.org Git - factor.git/commitdiff
checksums: fix test using.
authorJohn Benediktsson <mrjbq7@gmail.com>
Thu, 30 Jun 2016 21:47:18 +0000 (14:47 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Thu, 30 Jun 2016 21:47:18 +0000 (14:47 -0700)
basis/checksums/md5/md5-tests.factor
basis/checksums/sha/sha-tests.factor

index 04905db7379050a782dd2493ae4c8789dec40ea9..d1645430f87a1abd594933b591d773e2fa91a646 100644 (file)
@@ -1,7 +1,8 @@
 ! Copyright (C) 2009 Doug Coleman.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: byte-arrays checksums checksums.md5 io.encodings.binary
-io.streams.byte-array kernel math.parser sequences tools.test ;
+USING: byte-arrays checksums checksums.common checksums.md5
+io.encodings.binary io.streams.byte-array kernel math.parser
+sequences tools.test ;
 
 { "d41d8cd98f00b204e9800998ecf8427e" } [ "" >byte-array md5 checksum-bytes bytes>hex-string ] unit-test
 { "0cc175b9c0f1b6a831c399e269772661" } [ "a" >byte-array md5 checksum-bytes bytes>hex-string ] unit-test
index 58190ef4a2f0786d605af859199882e2cf2aa9c6..7ac9e17243a4a8772707cc4a640dda0c47f5d536 100644 (file)
@@ -1,6 +1,6 @@
-USING: arrays checksums checksums.sha checksums.sha.private
-io.encodings.binary io.streams.byte-array kernel math.parser
-sequences tools.test ;
+USING: arrays checksums checksums.common checksums.sha
+checksums.sha.private io.encodings.binary io.streams.byte-array
+kernel math.parser sequences tools.test ;
 IN: checksums.sha.tests
 
 : test-checksum ( text identifier -- checksum )