aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/routing_test.rb
diff options
context:
space:
mode:
authorutilum <oz@utilum.com>2018-02-22 00:40:21 +0100
committerutilum <oz@utilum.com>2018-02-22 00:54:40 +0100
commit6f6fe69ea8d2072c49ab7d56b32f19ea27805962 (patch)
treebdd0e484b93d216b590c435383075d9876eb5d64 /actionpack/test/controller/routing_test.rb
parent63d530c5e68a8cf53603744789f53ccbc7ac1a0e (diff)
downloadrails-6f6fe69ea8d2072c49ab7d56b32f19ea27805962.tar.gz
rails-6f6fe69ea8d2072c49ab7d56b32f19ea27805962.tar.bz2
rails-6f6fe69ea8d2072c49ab7d56b32f19ea27805962.zip
We should call methods with `.method_name` not `::method_name`.
Found several instances. Follow up on 63d530c5e68a8cf53603744789f53ccbc7ac1a0e
Diffstat (limited to 'actionpack/test/controller/routing_test.rb')
-rw-r--r--actionpack/test/controller/routing_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/routing_test.rb b/actionpack/test/controller/routing_test.rb
index ec939e946a..9c0e101f7c 100644
--- a/actionpack/test/controller/routing_test.rb
+++ b/actionpack/test/controller/routing_test.rb
@@ -676,7 +676,7 @@ class LegacyRouteSetTests < ActiveSupport::TestCase
token = "\321\202\320\265\320\272\321\201\321\202".dup # 'text' in Russian
token.force_encoding(Encoding::BINARY)
- escaped_token = CGI::escape(token)
+ escaped_token = CGI.escape(token)
assert_equal "/page/" + escaped_token, url_for(rs, controller: "content", action: "show_page", id: token)
assert_equal({ controller: "content", action: "show_page", id: token }, rs.recognize_path("/page/#{escaped_token}"))