diff options
author | Emilio Tagua <miloops@gmail.com> | 2010-09-28 18:48:58 -0300 |
---|---|---|
committer | Emilio Tagua <miloops@gmail.com> | 2010-09-28 18:48:58 -0300 |
commit | 623ef13b775985198ea2615466d5b06ef45a1411 (patch) | |
tree | 7235a14ee5720e10c9403e397688a98f86896704 /actionpack/test/template/html-scanner | |
parent | d5bb640eb02fa9cae6e99f2c5b7d91c986bc65f1 (diff) | |
download | rails-623ef13b775985198ea2615466d5b06ef45a1411.tar.gz rails-623ef13b775985198ea2615466d5b06ef45a1411.tar.bz2 rails-623ef13b775985198ea2615466d5b06ef45a1411.zip |
Fix test that wasn't running at all.
Diffstat (limited to 'actionpack/test/template/html-scanner')
-rw-r--r-- | actionpack/test/template/html-scanner/tag_node_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/template/html-scanner/tag_node_test.rb b/actionpack/test/template/html-scanner/tag_node_test.rb index 3d1976c1c2..0d87f1bd42 100644 --- a/actionpack/test/template/html-scanner/tag_node_test.rb +++ b/actionpack/test/template/html-scanner/tag_node_test.rb @@ -55,7 +55,7 @@ class TagNodeTest < Test::Unit::TestCase 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 |