From 772c68ff622cd14716ad9658ec50da79e3a35a1a Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 6 Nov 2016 23:50:40 -0500 Subject: [PATCH] Test: Removed binary output from test --- test/text.t.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/text.t.cpp b/test/text.t.cpp index 0f47e9dbb..72bcbd044 100644 --- a/test/text.t.cpp +++ b/test/text.t.cpp @@ -230,7 +230,7 @@ int main (int, char**) t.is (longestWord (" "), 0, "longestWord ( ) --> 0"); t.is (longestWord ("this is a test"), 4, "longestWord (this is a test) --> 4"); t.is (longestWord ("this is a better test"), 6, "longestWord (this is a better test) --> 6"); - t.is (longestWord ("house Çirçös clown"), 6, "longestWord (Çirçös) --> 6"); + t.is (longestWord ("house Çirçös clown"), 6, "longestWord (house ...... clown) --> 6"); // int longestLine (const std::string&) t.is (longestLine ("one two three four"), 18, "longestLine (one two three four) --> 18");