diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2012-12-31 09:09:11 -0800 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2012-12-31 09:09:11 -0800 |
commit | cf2dcf4e9f752a4dbb4f477bd1b884863bab5ca4 (patch) | |
tree | 8de9a2f087b9db9a20904bf939068049777bd74d /railties/test | |
parent | b22c527e65a41da59dbfcb078968069c6fae5086 (diff) | |
parent | dbacb95a2187e853c0615f30919a407744162595 (diff) | |
download | rails-cf2dcf4e9f752a4dbb4f477bd1b884863bab5ca4.tar.gz rails-cf2dcf4e9f752a4dbb4f477bd1b884863bab5ca4.tar.bz2 rails-cf2dcf4e9f752a4dbb4f477bd1b884863bab5ca4.zip |
Merge pull request #8666 from mekishizufu/fix_lambdas
Fix usage of lambda as a Rack endpoint
Diffstat (limited to 'railties/test')
-rw-r--r-- | railties/test/application/assets_test.rb | 2 | ||||
-rw-r--r-- | railties/test/railties/engine_test.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/railties/test/application/assets_test.rb b/railties/test/application/assets_test.rb index f98915d1cc..638df8ca23 100644 --- a/railties/test/application/assets_test.rb +++ b/railties/test/application/assets_test.rb @@ -45,7 +45,7 @@ module ApplicationTests app_file 'config/routes.rb', <<-RUBY AppTemplate::Application.routes.draw do - get '*path', to: lambda { |env| [200, { "Content-Type" => "text/html" }, "Not an asset"] } + get '*path', to: lambda { |env| [200, { "Content-Type" => "text/html" }, ["Not an asset"]] } end RUBY diff --git a/railties/test/railties/engine_test.rb b/railties/test/railties/engine_test.rb index fcbe7b6cda..a4a75fe459 100644 --- a/railties/test/railties/engine_test.rb +++ b/railties/test/railties/engine_test.rb @@ -568,7 +568,7 @@ YAML @plugin.write "lib/bukkits.rb", <<-RUBY module Bukkits class Engine < ::Rails::Engine - endpoint lambda { |env| [200, {'Content-Type' => 'text/html'}, 'hello'] } + endpoint lambda { |env| [200, {'Content-Type' => 'text/html'}, ['hello']] } end end RUBY |