diff options
author | Joshua Peek <josh@joshpeek.com> | 2009-03-15 23:25:12 -0500 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2009-03-15 23:25:12 -0500 |
commit | d0e5417861fad15e9e493a1843f8b54fb7a993ec (patch) | |
tree | 0b7eb601569b83b325175165c59979c7b587312c /actionpack | |
parent | 5a575bb99293837533dc357da891dac29a702616 (diff) | |
download | rails-d0e5417861fad15e9e493a1843f8b54fb7a993ec.tar.gz rails-d0e5417861fad15e9e493a1843f8b54fb7a993ec.tar.bz2 rails-d0e5417861fad15e9e493a1843f8b54fb7a993ec.zip |
update rack fixture to be ruby 1.9 compat
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/test/controller/integration_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/integration_test.rb b/actionpack/test/controller/integration_test.rb index b3f40fbe95..43d2307d34 100644 --- a/actionpack/test/controller/integration_test.rb +++ b/actionpack/test/controller/integration_test.rb @@ -2,7 +2,7 @@ require 'abstract_unit' class SessionTest < Test::Unit::TestCase StubApp = lambda { |env| - [200, {"Content-Type" => "text/html", "Content-Length" => "13"}, "Hello, World!"] + [200, {"Content-Type" => "text/html", "Content-Length" => "13"}, ["Hello, World!"]] } def setup |