Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixes failing test with ruby 1.8.7-p358
Same as 91a9b24
  • Loading branch information
arunagw committed Feb 17, 2012
1 parent a1b9acb commit c17608f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions activesupport/test/core_ext/hash_ext_test.rb
Expand Up @@ -1058,8 +1058,8 @@ def test_escaping_to_xml
:pre_escaped_string => 'First & Last Name'
}.stringify_keys

expected_xml = '<person><bare-string>First &amp; Last Name</bare-string><pre-escaped-string>First &amp;amp; Last Name</pre-escaped-string></person>'
assert_equal expected_xml, hash.to_xml(@xml_options)
assert hash.to_xml(@xml_options).include?("<bare-string>First &amp; Last Name</bare-string>")
assert hash.to_xml(@xml_options).include?("<pre-escaped-string>First &amp;amp; Last Name</pre-escaped-string>")
end

def test_unescaping_from_xml
Expand Down

0 comments on commit c17608f

Please sign in to comment.