diff options
author | Philip Tolton <mrtolton@gmail.com> | 2017-12-06 16:01:00 -0500 |
---|---|---|
committer | Philip Tolton <mrtolton@gmail.com> | 2017-12-06 16:01:00 -0500 |
commit | faf169eedd10326233eaea55ed76089ede608336 (patch) | |
tree | 04f3fbeb277bf897e4ae4086067641b032a575e0 /actionpack | |
parent | 19d2fab6ff11222757a06bc1bd24f3c5df2d10d3 (diff) | |
download | rails-faf169eedd10326233eaea55ed76089ede608336.tar.gz rails-faf169eedd10326233eaea55ed76089ede608336.tar.bz2 rails-faf169eedd10326233eaea55ed76089ede608336.zip |
Correct routing test spelling mistake.
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/test/controller/routing_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/routing_test.rb b/actionpack/test/controller/routing_test.rb index f09051b306..71b01c36a7 100644 --- a/actionpack/test/controller/routing_test.rb +++ b/actionpack/test/controller/routing_test.rb @@ -213,7 +213,7 @@ class LegacyRouteSetTests < ActiveSupport::TestCase assert_equal expected, ActiveSupport::JSON.decode(get(u)) end - def test_regexp_precidence + def test_regexp_precedence rs.draw do get "/whois/:domain", constraints: { domain: /\w+\.[\w\.]+/ }, |