Merge pull request #12992 from arunagw/build-fix-routing-inspector

Build fix for Routing Inspector
This commit is contained in:
Rafael Mendonça França 2013-11-21 16:05:24 -08:00
commit 8973a5af83

@ -50,7 +50,7 @@ def self.inspect
" blog /blog Blog::Engine",
"",
"Routes for Blog::Engine:",
"cart GET /cart(.:format) cart#show"
" cart GET /cart(.:format) cart#show"
], output
end
@ -61,7 +61,7 @@ def test_cart_inspect
assert_equal [
"Prefix Verb URI Pattern Controller#Action",
"cart GET /cart(.:format) cart#show"
" cart GET /cart(.:format) cart#show"
], output
end