From 12db389fc2625117c30abe8333e37462d01e58d9 Mon Sep 17 00:00:00 2001 From: slava Date: Wed, 22 Nov 2006 18:00:05 +0000 Subject: [PATCH] Unit test fix --- library/test/math/integer.factor | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/library/test/math/integer.factor b/library/test/math/integer.factor index d36e3acc4d..f62ef9a0f2 100644 --- a/library/test/math/integer.factor +++ b/library/test/math/integer.factor @@ -1,5 +1,6 @@ IN: temporary -USING: kernel math namespaces prettyprint test math-internals ; +USING: kernel math namespaces prettyprint test math-internals +errors ; [ "-8" ] [ -8 unparse ] unit-test @@ -115,4 +116,4 @@ unit-test ! We don't care if this fails or returns 0 (its CPU-specific) ! as long as it doesn't crash -[ ] [ [ 0 0 /i ] catch drop ] unit-test +[ ] [ [ 0 0 /i ] catch clear ] unit-test