diff options
author | Kalys Osmonov <kalys@osmonov.com> | 2012-09-03 15:42:24 +0600 |
---|---|---|
committer | Kalys Osmonov <kalys@osmonov.com> | 2012-09-09 19:48:32 +0600 |
commit | 6b2a24c3bd7ed75326dec50decf6018b3685f113 (patch) | |
tree | 3ff4a50c810aaf59fb2d213ead6ad511c41dcfa1 /activesupport/test | |
parent | 5d264f229c3798367e445d1ca02f3910ad9db547 (diff) | |
download | rails-6b2a24c3bd7ed75326dec50decf6018b3685f113.tar.gz rails-6b2a24c3bd7ed75326dec50decf6018b3685f113.tar.bz2 rails-6b2a24c3bd7ed75326dec50decf6018b3685f113.zip |
' dates back to SGML when ' was introduced in HTML 4.0
Diffstat (limited to 'activesupport/test')
-rw-r--r-- | activesupport/test/core_ext/string_ext_test.rb | 2 |
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 dc5ae0eafc..6720ed42f0 100644 --- a/activesupport/test/core_ext/string_ext_test.rb +++ b/activesupport/test/core_ext/string_ext_test.rb @@ -500,7 +500,7 @@ class OutputSafetyTest < ActiveSupport::TestCase test "ERB::Util.html_escape should escape unsafe characters" do string = '<>&"\'' - expected = '<>&"'' + expected = '<>&"'' assert_equal expected, ERB::Util.html_escape(string) end |