aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/application/assets_test.rb
diff options
context:
space:
mode:
authorKalys Osmonov <kalys@osmonov.com>2012-09-03 15:42:24 +0600
committerKalys Osmonov <kalys@osmonov.com>2012-09-09 19:48:32 +0600
commit6b2a24c3bd7ed75326dec50decf6018b3685f113 (patch)
tree3ff4a50c810aaf59fb2d213ead6ad511c41dcfa1 /railties/test/application/assets_test.rb
parent5d264f229c3798367e445d1ca02f3910ad9db547 (diff)
downloadrails-6b2a24c3bd7ed75326dec50decf6018b3685f113.tar.gz
rails-6b2a24c3bd7ed75326dec50decf6018b3685f113.tar.bz2
rails-6b2a24c3bd7ed75326dec50decf6018b3685f113.zip
&#39 dates back to SGML when &#x27 was introduced in HTML 4.0
Diffstat (limited to 'railties/test/application/assets_test.rb')
-rw-r--r--railties/test/application/assets_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/test/application/assets_test.rb b/railties/test/application/assets_test.rb
index c29fa4d95f..9c402fab02 100644
--- a/railties/test/application/assets_test.rb
+++ b/railties/test/application/assets_test.rb
@@ -241,7 +241,7 @@ module ApplicationTests
get '/posts'
assert_match(/AssetNotPrecompiledError/, last_response.body)
- assert_match(/app.js isn&#x27;t precompiled/, last_response.body)
+ assert_match(/app.js isn&#39;t precompiled/, last_response.body)
end
test "assets raise AssetNotPrecompiledError when manifest file is present and requested file isn't precompiled if digest is disabled" do
@@ -265,7 +265,7 @@ module ApplicationTests
get '/posts'
assert_match(/AssetNotPrecompiledError/, last_response.body)
- assert_match(/app.js isn&#x27;t precompiled/, last_response.body)
+ assert_match(/app.js isn&#39;t precompiled/, last_response.body)
end
test "precompile properly refers files referenced with asset_path and and run in the provided RAILS_ENV" do