aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/application/metal_test.rb
diff options
context:
space:
mode:
authorCarl Lerche <carllerche@mac.com>2010-03-03 21:16:35 -0800
committerCarl Lerche <carllerche@mac.com>2010-03-03 21:24:27 -0800
commit15b3b74624eb4c5ae383956950cab12ca9899131 (patch)
tree7a8c5cf8044d79a7656abff25c080e06e7423d4c /railties/test/application/metal_test.rb
parent1f0f05b10c924d2f0d0ff4c74cbd979e77deea1d (diff)
downloadrails-15b3b74624eb4c5ae383956950cab12ca9899131.tar.gz
rails-15b3b74624eb4c5ae383956950cab12ca9899131.tar.bz2
rails-15b3b74624eb4c5ae383956950cab12ca9899131.zip
Fix all the broken tests due to the AC configuration refactor
Diffstat (limited to 'railties/test/application/metal_test.rb')
-rw-r--r--railties/test/application/metal_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/test/application/metal_test.rb b/railties/test/application/metal_test.rb
index 225bede117..1ec62282c8 100644
--- a/railties/test/application/metal_test.rb
+++ b/railties/test/application/metal_test.rb
@@ -28,7 +28,7 @@ module ApplicationTests
end
RUBY
- get "/"
+ get "/not/slash"
assert_equal 200, last_response.status
assert_equal "FooMetal", last_response.body
end
@@ -50,7 +50,7 @@ module ApplicationTests
end
RUBY
- get "/"
+ get "/not/slash"
assert_equal 200, last_response.status
assert_equal "Metal B", last_response.body
end