aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/multibyte_proxy_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/test/multibyte_proxy_test.rb')
-rw-r--r--activesupport/test/multibyte_proxy_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/test/multibyte_proxy_test.rb b/activesupport/test/multibyte_proxy_test.rb
index 360cf57302..c303097f80 100644
--- a/activesupport/test/multibyte_proxy_test.rb
+++ b/activesupport/test/multibyte_proxy_test.rb
@@ -1,4 +1,4 @@
-require 'abstract_unit'
+require "abstract_unit"
class MultibyteProxyText < ActiveSupport::TestCase
class AsciiOnlyEncoder
@@ -6,7 +6,7 @@ class MultibyteProxyText < ActiveSupport::TestCase
alias to_s wrapped_string
def initialize(string)
- @wrapped_string = string.gsub(/[^\u0000-\u007F]/, '?')
+ @wrapped_string = string.gsub(/[^\u0000-\u007F]/, "?")
end
end