about summary refs log tree commit homepage
path: root/test
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-02-27 13:58:11 -0800
committerEric Wong <normalperson@yhbt.net>2009-03-03 11:13:04 -0800
commit3d843154bc18a20d5bb7b50814b3918bca96c08d (patch)
treef496ebec036dcdb597159b59c01e3f76f8a95be3 /test
parent431e8fd9d2d3783de8bbcfb55ff314871bcb7fea (diff)
downloadunicorn-3d843154bc18a20d5bb7b50814b3918bca96c08d.tar.gz
23x79 looks better in a terminal, but the Ruby 1.9
OptionParser output adds a little more whitespace
requiring 24x80 output, which is still fine...
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