Skip to content

Commit

Permalink
Fix test that wasn't running at all.
Browse files Browse the repository at this point in the history
  • Loading branch information
miloops committed Sep 28, 2010
1 parent d5bb640 commit 623ef13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actionpack/test/template/html-scanner/tag_node_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def test_attributes_with_escaped_quotes

def test_to_s
node = tag("<a b=c d='f' g=\"h 'i'\" />")
assert_equal %(<a b='c' d='f' g='h \\'i\\'' />), node.to_s
assert_equal %(<a b="c" d="f" g="h 'i'" />), node.to_s
end

def test_tag
Expand Down

0 comments on commit 623ef13

Please sign in to comment.