From 0deecc781a53f7125abecb4b1d301fb76b6a2bb5 Mon Sep 17 00:00:00 2001 From: Cliff Pruitt Date: Wed, 17 Jul 2019 12:13:09 -0400 Subject: Revert "Make UTF-8 string requirement explicit for `ActiveSupport::Inflector.transliterate`" --- activesupport/test/transliterate_test.rb | 8 -------- 1 file changed, 8 deletions(-) (limited to 'activesupport/test') diff --git a/activesupport/test/transliterate_test.rb b/activesupport/test/transliterate_test.rb index 525b4a8559..9e29a93ea0 100644 --- a/activesupport/test/transliterate_test.rb +++ b/activesupport/test/transliterate_test.rb @@ -57,12 +57,4 @@ class TransliterateTest < ActiveSupport::TestCase end assert_equal "Can only transliterate strings. Received Object", exception.message end - - def test_transliterate_handles_non_unicode_strings - ascii_8bit_string = "A".b - exception = assert_raises ArgumentError do - assert_equal "A", ActiveSupport::Inflector.transliterate(ascii_8bit_string) - end - assert_equal "Can only transliterate UTF-8 strings. Received string with encoding ASCII-8BIT", exception.message - end end -- cgit v1.2.3