Skip to content

Commit

Permalink
Fixed failing test for ruby-1.8.7-p357
Browse files Browse the repository at this point in the history
  • Loading branch information
arunagw committed Jan 7, 2012
1 parent a048568 commit 91a9b24
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 @@ -959,8 +959,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 91a9b24

Please sign in to comment.