diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-11-21 16:05:24 -0800 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-11-21 16:05:24 -0800 |
commit | 8973a5af836a16fdb9f2509144d7637e14e9da82 (patch) | |
tree | e9b0805c95c40be97129597c86a7ae93104a948a | |
parent | b39b3652e166dd8914b031ebb2d1db046a2137d8 (diff) | |
parent | 7917a5a5ffeb79bbb9a4991c7e0c610817c70dde (diff) | |
download | rails-8973a5af836a16fdb9f2509144d7637e14e9da82.tar.gz rails-8973a5af836a16fdb9f2509144d7637e14e9da82.tar.bz2 rails-8973a5af836a16fdb9f2509144d7637e14e9da82.zip |
Merge pull request #12992 from arunagw/build-fix-routing-inspector
Build fix for Routing Inspector
-rw-r--r-- | actionpack/test/dispatch/routing/inspector_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/test/dispatch/routing/inspector_test.rb b/actionpack/test/dispatch/routing/inspector_test.rb index c63c1475a3..c8038bbd7c 100644 --- a/actionpack/test/dispatch/routing/inspector_test.rb +++ b/actionpack/test/dispatch/routing/inspector_test.rb @@ -50,7 +50,7 @@ module ActionDispatch " 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 @@ module ActionDispatch assert_equal [ "Prefix Verb URI Pattern Controller#Action", - "cart GET /cart(.:format) cart#show" + " cart GET /cart(.:format) cart#show" ], output end |