aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/fixtures/metal/multiplemetals/app/metal/metal_b.rb
diff options
context:
space:
mode:
Diffstat (limited to 'railties/test/fixtures/metal/multiplemetals/app/metal/metal_b.rb')
-rw-r--r--railties/test/fixtures/metal/multiplemetals/app/metal/metal_b.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/test/fixtures/metal/multiplemetals/app/metal/metal_b.rb b/railties/test/fixtures/metal/multiplemetals/app/metal/metal_b.rb
index a8bbf3fd60..80e69fe0b0 100644
--- a/railties/test/fixtures/metal/multiplemetals/app/metal/metal_b.rb
+++ b/railties/test/fixtures/metal/multiplemetals/app/metal/metal_b.rb
@@ -1,5 +1,5 @@
-class MetalB < Rails::Rack::Metal
+class MetalB
def self.call(env)
- [200, { "Content-Type" => "text/html"}, ["Hi"]]
+ [200, { "Content-Type" => "text/html"}, ["Metal B"]]
end
end