diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2009-04-27 00:00:03 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2009-04-27 00:00:03 -0700 |
commit | a88ddf8cc327279258cd68b0ad4091a5d54e3507 (patch) | |
tree | f6d5a21900de3e06db53f16d1315ca528516651c /actionpack/test/controller | |
parent | e44cd416208241cd96f75574d6c454fc2101e789 (diff) | |
download | rails-a88ddf8cc327279258cd68b0ad4091a5d54e3507.tar.gz rails-a88ddf8cc327279258cd68b0ad4091a5d54e3507.tar.bz2 rails-a88ddf8cc327279258cd68b0ad4091a5d54e3507.zip |
Don't return bare string as rack body
Diffstat (limited to 'actionpack/test/controller')
-rw-r--r-- | actionpack/test/controller/dispatcher_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/dispatcher_test.rb b/actionpack/test/controller/dispatcher_test.rb index 569d698a03..c3bd113b86 100644 --- a/actionpack/test/controller/dispatcher_test.rb +++ b/actionpack/test/controller/dispatcher_test.rb @@ -53,7 +53,7 @@ class DispatcherTest < Test::Unit::TestCase assert_equal [ 500, {"Content-Type" => "text/html"}, - "<html><body><h1>500 Internal Server Error</h1></body></html>" + ["<html><body><h1>500 Internal Server Error</h1></body></html>"] ], dispatch end end |