aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorArun Agrawal <arunagw@gmail.com>2012-06-16 15:05:49 -0400
committerArun Agrawal <arunagw@gmail.com>2012-06-16 15:05:49 -0400
commit909a4a563ebbe0d642056451acf41b2e524b2a5e (patch)
treef182d097a05ab6a6c84d27df2e2f9bfd689afa6f /actionpack
parent52d09638dfc07413956846a6319b145511a15757 (diff)
downloadrails-909a4a563ebbe0d642056451acf41b2e524b2a5e.tar.gz
rails-909a4a563ebbe0d642056451acf41b2e524b2a5e.tar.bz2
rails-909a4a563ebbe0d642056451acf41b2e524b2a5e.zip
It should also include text/css => Build Fix
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/test/template/asset_tag_helper_test.rb2
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 f4dedb0c81..a9fa2298b7 100644
--- a/actionpack/test/template/asset_tag_helper_test.rb
+++ b/actionpack/test/template/asset_tag_helper_test.rb
@@ -1088,7 +1088,7 @@ class AssetTagHelperTest < ActionView::TestCase
ENV["RAILS_ASSET_ID"] = ""
assert_dom_equal(
- %(<link href="/stylesheets/all.css" media="screen" rel="stylesheet" />),
+ %(<link type="text/css" href="/stylesheets/all.css" media="screen" rel="stylesheet" />),
stylesheet_link_tag("/foo/baz", :cache => true)
)