aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/string_ext_test.rb
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2017-11-09 18:25:07 -0500
committerGitHub <noreply@github.com>2017-11-09 18:25:07 -0500
commit78fc8530d4aa3d5d82da78fc0a763ff1d0553121 (patch)
tree0983d190cc889a93f46a027c623ef08ad3dfc7be /activesupport/test/core_ext/string_ext_test.rb
parent542ac6b3100337e293a56544e3e56805598e8e57 (diff)
parent1ede34697539d5094090c7c8e3ab95359f706904 (diff)
downloadrails-78fc8530d4aa3d5d82da78fc0a763ff1d0553121.tar.gz
rails-78fc8530d4aa3d5d82da78fc0a763ff1d0553121.tar.bz2
rails-78fc8530d4aa3d5d82da78fc0a763ff1d0553121.zip
Merge pull request #31027 from PHedkvist/inflector_test_type
Fixed typo in test for activesupport parameterize
Diffstat (limited to 'activesupport/test/core_ext/string_ext_test.rb')
-rw-r--r--activesupport/test/core_ext/string_ext_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/test/core_ext/string_ext_test.rb b/activesupport/test/core_ext/string_ext_test.rb
index 9fd6d8ac0f..5c5abe9fd1 100644
--- a/activesupport/test/core_ext/string_ext_test.rb
+++ b/activesupport/test/core_ext/string_ext_test.rb
@@ -197,7 +197,7 @@ class StringInflectionsTest < ActiveSupport::TestCase
end
def test_string_parameterized_underscore_preserve_case
- StringToParameterizePreserceCaseWithUnderscore.each do |normal, slugged|
+ StringToParameterizePreserveCaseWithUnderscore.each do |normal, slugged|
assert_equal(slugged, normal.parameterize(separator: "_", preserve_case: true))
end
end