From ac5980d55bdddf68c9b0023c0f878e7cd2fcc9da Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Wed, 28 Feb 2018 15:10:43 -0800 Subject: [PATCH] io.encodings.detect: fix tests. --- extra/io/encodings/detect/detect-tests.factor | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/extra/io/encodings/detect/detect-tests.factor b/extra/io/encodings/detect/detect-tests.factor index 5a8c00fcb2..78c8b1a55b 100644 --- a/extra/io/encodings/detect/detect-tests.factor +++ b/extra/io/encodings/detect/detect-tests.factor @@ -1,8 +1,8 @@ ! Copyright (C) 2010 Joe Groff. ! See http://factorcode.org/license.txt for BSD license. -USING: byte-arrays io.encodings.binary io.encodings.detect -io.encodings.latin1 io.encodings.utf16 io.encodings.utf32 -io.encodings.utf8 namespaces tools.test ; +USING: byte-arrays io.encodings.8-bit io.encodings.binary +io.encodings.detect io.encodings.latin1 io.encodings.utf16 +io.encodings.utf32 io.encodings.utf8 namespaces tools.test ; ! UTF encodings with BOMs { utf16be } [ B{ 0xFE 0xFF 0x00 0x31 0x00 0x32 0x00 0x33 } detect-byte-array ] unit-test @@ -34,7 +34,7 @@ unit-test { utf8 } [ B{ 0x31 0x32 0xC2 0xA0 0x33 } detect-byte-array ] unit-test { latin1 } [ B{ 0x31 0x32 0xA0 0x33 } detect-byte-array ] unit-test { koi8-r } [ - koi8-r default-8bit-encoding [ + koi8-r default-encoding [ B{ 0x31 0x32 0xA0 0x33 } detect-byte-array ] with-variable ] unit-test