about summary refs log tree commit homepage
path: root/test
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-03-29 22:20:50 -0700
committerEric Wong <normalperson@yhbt.net>2009-03-29 22:20:50 -0700
commit45dc7c2acae82c4699c2678017ae714f032aa8b1 (patch)
tree8575933007ed9e20d171538545450161b3f790f9 /test
parent5bf4908057d611a127020fca7acf35c606cade16 (diff)
downloadunicorn-45dc7c2acae82c4699c2678017ae714f032aa8b1.tar.gz
They were non-conformant for the longest time
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 fd33db1..7ce0637 100644
--- a/test/exec/test_exec.rb
+++ b/test/exec/test_exec.rb
@@ -31,13 +31,13 @@ class ExecTest < Test::Unit::TestCase
 
   HI = <<-EOS
 use Rack::ContentLength
-run proc { |env| [ 200, { 'Content-Type' => 'text/plain' }, "HI\\n" ] }
+run proc { |env| [ 200, { 'Content-Type' => 'text/plain' }, [ "HI\\n" ] ] }
   EOS
 
   HELLO = <<-EOS
 class Hello
   def call(env)
-    [ 200, { 'Content-Type' => 'text/plain' }, "HI\\n" ]
+    [ 200, { 'Content-Type' => 'text/plain' }, [ "HI\\n" ] ]
   end
 end
   EOS