Skip to content

Commit

Permalink
fixed assets test
Browse files Browse the repository at this point in the history
  • Loading branch information
arunagw committed Feb 18, 2012
1 parent bea34a7 commit 7782a70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion railties/test/application/assets_test.rb
Expand Up @@ -68,7 +68,7 @@ def precompile!
files << Dir["#{app_path}/public/assets/foo/application.js"].first files << Dir["#{app_path}/public/assets/foo/application.js"].first
files.each do |file| files.each do |file|
assert_not_nil file, "Expected application.js asset to be generated, but none found" assert_not_nil file, "Expected application.js asset to be generated, but none found"
assert_equal "alert()", File.read(file) assert_equal "alert();", File.read(file)
end end
end end


Expand Down

0 comments on commit 7782a70

Please sign in to comment.