aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/journey/router
diff options
context:
space:
mode:
authorKir Shatrov <shatrov@me.com>2017-07-24 23:20:53 +0300
committerKir Shatrov <shatrov@me.com>2017-07-29 14:02:40 +0300
commitdfcc766163fa58389a6fe6dc5788533a455f8a89 (patch)
treec167e5e4ba9691dcbb543f2e07d716fcf11bfa4d /actionpack/test/journey/router
parent904f1a8747958129124d86b44e36c5f0263e0125 (diff)
downloadrails-dfcc766163fa58389a6fe6dc5788533a455f8a89.tar.gz
rails-dfcc766163fa58389a6fe6dc5788533a455f8a89.tar.bz2
rails-dfcc766163fa58389a6fe6dc5788533a455f8a89.zip
Use frozen string literal in actionpack/
Diffstat (limited to 'actionpack/test/journey/router')
-rw-r--r--actionpack/test/journey/router/utils_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/journey/router/utils_test.rb b/actionpack/test/journey/router/utils_test.rb
index 646563f7ab..2d09098f11 100644
--- a/actionpack/test/journey/router/utils_test.rb
+++ b/actionpack/test/journey/router/utils_test.rb
@@ -40,7 +40,7 @@ module ActionDispatch
end
def test_normalize_path_with_nil
- assert_equal '/', Utils.normalize_path(nil)
+ assert_equal "/", Utils.normalize_path(nil)
end
end
end