]> gitweb.factorcode.org Git - factor.git/commitdiff
fix some tests broken by previous commit.
authorJohn Benediktsson <mrjbq7@gmail.com>
Thu, 15 Feb 2018 21:16:39 +0000 (13:16 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Thu, 15 Feb 2018 21:16:39 +0000 (13:16 -0800)
basis/checksums/sha/sha-tests.factor
basis/math/primes/erato/fast/fast-tests.factor
core/math/integers/integers-tests.factor
core/source-files/errors/errors-tests.factor
extra/base85/base85-tests.factor
extra/grouping/extras/extras-tests.factor
extra/math/binpack/binpack-tests.factor

index c0e59bf2a2724027f2c54eda5827215c73926e3c..ef211821d6ae671cb6ca9e6bc6ad86e62afc6e1d 100644 (file)
@@ -1,6 +1,7 @@
 USING: arrays checksums checksums.common checksums.sha
 checksums.sha.private io.encodings.binary io.streams.byte-array
 kernel math.parser sequences tools.test random ;
+IN: checksums.sha.tests
 
 { "a9993e364706816aba3e25717850c26c9cd0d89d" } [ "abc" sha1 checksum-bytes bytes>hex-string ] unit-test
 { "84983e441c3bd26ebaae4aa1f95129e5e54670f1" } [ "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq" sha1 checksum-bytes bytes>hex-string ] unit-test
index d62668c7594a8cdd84f91811bdbddf1249775729..69bf973d6c60fbadb1e46c673bcc2a9f7e1fe721 100644 (file)
@@ -1,4 +1,4 @@
-USING: fry kernel sequences tools.test ;
+USING: fry kernel math.primes.erato.fast sequences tools.test ;
 
 {
 
index 46c00fb11c8314fc04300b9c83772b011b6d56c2..263a329e261c22f99e20218d9016e91e7d997a06 100644 (file)
@@ -1,6 +1,7 @@
 USING: continuations kernel math math.functions math.order
 math.private namespaces prettyprint prettyprint.config random
 sequences tools.test ;
+IN: math.integers.tests
 
 10 number-base [
     [ "-8" ] [ -8 unparse ] unit-test
index 068bc7c462c34254fbcdfce4f353f52a98e2d4c8..b96458fccbacd61cde222d79e57f0197f9592d22 100644 (file)
@@ -1,5 +1,6 @@
 USING: assocs compiler.errors compiler.units definitions
 namespaces tools.test words ;
+IN: source-files.errors.tests
 
 DEFER: forget-test
 
index d190d7483e76089b58c1139aea35286c55597800..3c978ef56f43e9488565ddf0450bdc5d1791a906 100644 (file)
@@ -1,4 +1,4 @@
-USING: kernel strings tools.test ;
+USING: base85 kernel strings tools.test ;
 
 { t } [ "Hello, world" dup >base85 base85> >string = ] unit-test
 
index 24a1a7ec8b41369231b0bf2a02844d57c84f93c9..c02e268f1bc618dd46b8547981a26abc6eec2bfa 100644 (file)
@@ -1,4 +1,5 @@
-USING: arrays kernel math math.functions sequences tools.test ;
+USING: arrays grouping.extras kernel math math.functions
+sequences tools.test ;
 
 { { } } [ { 1 } [ 2array ] 2clump-map ] unit-test
 { { { 1 2 } } } [ { 1 2 } [ 2array ] 2clump-map ] unit-test
index 032ca8d86d6e43a8d2f3e4c1e1e2afec0c617e0d..64d701633182e7c9d61417dbbb28e6f84fbfaf62 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2008 John Benediktsson
 ! See http://factorcode.org/license.txt for BSD license
 
-USING: kernel tools.test sequences ;
+USING: kernel math.binpack sequences tools.test ;
 
 { { V{ } } } [ { } 1 binpack ] unit-test