diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2010-03-11 17:49:17 -0800 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2010-03-11 17:49:17 -0800 |
commit | 5a7f7928a60749095dd890abfceff45a9912b8d2 (patch) | |
tree | 413e63df67d1252b293e7a49cd6b91048a265e50 | |
parent | 47bc138fc1d9ddafab8e4cf9cac8865f2092c003 (diff) | |
download | rails-5a7f7928a60749095dd890abfceff45a9912b8d2.tar.gz rails-5a7f7928a60749095dd890abfceff45a9912b8d2.tar.bz2 rails-5a7f7928a60749095dd890abfceff45a9912b8d2.zip |
Fix test
-rw-r--r-- | actionpack/test/template/asset_tag_helper_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/template/asset_tag_helper_test.rb b/actionpack/test/template/asset_tag_helper_test.rb index fe255246e0..d9a89959da 100644 --- a/actionpack/test/template/asset_tag_helper_test.rb +++ b/actionpack/test/template/asset_tag_helper_test.rb @@ -141,7 +141,7 @@ class AssetTagHelperTest < ActionView::TestCase ImageLinkToTag = { %(image_tag("xml.png")) => %(<img alt="Xml" src="/images/xml.png" />), - %(image_tag("..jpg")) => %(<img alt="." src="/images/..jpg" />), + %(image_tag("..jpg")) => %(<img alt="..jpg" src="/images/..jpg" />), %(image_tag("rss.gif", :alt => "rss syndication")) => %(<img alt="rss syndication" src="/images/rss.gif" />), %(image_tag("gold.png", :size => "45x70")) => %(<img alt="Gold" height="70" src="/images/gold.png" width="45" />), %(image_tag("gold.png", "size" => "45x70")) => %(<img alt="Gold" height="70" src="/images/gold.png" width="45" />), |