diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2019-04-03 16:53:51 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-03 16:53:51 -0400 |
commit | 9d02b1bd58a20f34d36c461a0b88bfe590655b54 (patch) | |
tree | 45e6f472e112613b245b621933f5ae989c40d888 /actionpack/test | |
parent | 8113c8e1238939c8c68c2598b0a78a5b2171943d (diff) | |
parent | ed7234860b061b7b82672e6ba51c682254cd7eb7 (diff) | |
download | rails-9d02b1bd58a20f34d36c461a0b88bfe590655b54.tar.gz rails-9d02b1bd58a20f34d36c461a0b88bfe590655b54.tar.bz2 rails-9d02b1bd58a20f34d36c461a0b88bfe590655b54.zip |
Merge pull request #35842 from Shopify/deduplicate-routing-strings
Deduplicate strings held by the router
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/dispatch/routing_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/test/dispatch/routing_test.rb b/actionpack/test/dispatch/routing_test.rb index 11772a36a3..362488d585 100644 --- a/actionpack/test/dispatch/routing_test.rb +++ b/actionpack/test/dispatch/routing_test.rb @@ -3379,13 +3379,13 @@ class TestRoutingMapper < ActionDispatch::IntegrationTest assert_match(/:param option can't contain colon/, ex.message) end - def test_action_from_path_is_not_frozen + def test_action_from_path_is_frozen draw do get "search" => "search" end get "/search" - assert_not_predicate @request.params[:action], :frozen? + assert_predicate @request.params[:action], :frozen? end def test_multiple_positional_args_with_the_same_name |