diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2011-09-13 02:41:27 -0700 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2011-09-13 02:41:27 -0700 |
commit | 60fd88d2f763eab11a7589227757a50028084068 (patch) | |
tree | 0983a4abcca248e922219f45061f11c6094fd76e | |
parent | 8a005ff5046bd78f71578dfbc19460cdbe2f0537 (diff) | |
parent | a65010fddb00ceb9356f8ccb797405a86a1d8b9f (diff) | |
download | rails-60fd88d2f763eab11a7589227757a50028084068.tar.gz rails-60fd88d2f763eab11a7589227757a50028084068.tar.bz2 rails-60fd88d2f763eab11a7589227757a50028084068.zip |
Merge pull request #3001 from guilleiguaran/fix-assets-precompile-host-test
Fix precompile asset_host test
-rw-r--r-- | railties/test/application/assets_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/test/application/assets_test.rb b/railties/test/application/assets_test.rb index 95fcb4a3dd..0901c6df3d 100644 --- a/railties/test/application/assets_test.rb +++ b/railties/test/application/assets_test.rb @@ -279,7 +279,7 @@ module ApplicationTests file = Dir["#{app_path}/public/assets/application.css"].first content = File.read(file) - assert_match(/\/assets\/rails-([0-z]+)\.png/, content) + assert_match(/\/assets\/rails.png/, content) assert_no_match(/www\.example\.com/, content) end |