diff --git a/basis/strings/tables/tables-tests.factor b/basis/strings/tables/tables-tests.factor index 56aacfeb17..83227148af 100644 --- a/basis/strings/tables/tables-tests.factor +++ b/basis/strings/tables/tables-tests.factor @@ -3,10 +3,12 @@ USING: tools.test strings.tables ; IN: strings.tables.tests +[ { } ] [ { } format-table ] unit-test + [ { "A BB" "CC D" } ] [ { { "A" "BB" } { "CC" "D" } } format-table ] unit-test [ { "A C" "B " "D E" } ] [ { { "A\nB" "C" } { "D" "E" } } format-table ] unit-test [ { "A B" " C" "D E" } ] [ { { "A" "B\nC" } { "D" "E" } } format-table ] unit-test -[ { "A B" "C D" " E" } ] [ { { "A" "B" } { "C" "D\nE" } } format-table ] unit-test \ No newline at end of file +[ { "A B" "C D" " E" } ] [ { { "A" "B" } { "C" "D\nE" } } format-table ] unit-test