about summary refs log tree commit homepage
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/exec/test_exec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/exec/test_exec.rb b/test/exec/test_exec.rb
index b539b22..d050991 100644
--- a/test/exec/test_exec.rb
+++ b/test/exec/test_exec.rb
@@ -112,9 +112,9 @@ end # after_fork
 
     # Be considerate of the on-call technician working from their
     # mobile phone or netbook on a slow connection :)
-    assert lines.size < 24, "help height fits in an ANSI terminal window"
+    assert lines.size <= 24, "help height fits in an ANSI terminal window"
     lines.each do |line|
-      assert line.size < 80, "help width fits in an ANSI terminal window"
+      assert line.size <= 80, "help width fits in an ANSI terminal window"
     end
   end