aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2011-09-26 12:20:52 -0300
committerSantiago Pastorino <santiago@wyeworks.com>2011-09-26 12:20:52 -0300
commitd6cff931520d9cd29eeff3c867ef200acaae96ae (patch)
treee37882fff140692424881f1162b15c58cda0f3e5 /actionpack
parent2c3a5075b683f079b6b53f121137d3c38e47a8ef (diff)
downloadrails-d6cff931520d9cd29eeff3c867ef200acaae96ae.tar.gz
rails-d6cff931520d9cd29eeff3c867ef200acaae96ae.tar.bz2
rails-d6cff931520d9cd29eeff3c867ef200acaae96ae.zip
Just assert_equal here
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/test/template/sprockets_helper_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/template/sprockets_helper_test.rb b/actionpack/test/template/sprockets_helper_test.rb
index 55c5bcf1b1..ad57bbd96c 100644
--- a/actionpack/test/template/sprockets_helper_test.rb
+++ b/actionpack/test/template/sprockets_helper_test.rb
@@ -271,7 +271,7 @@ class SprocketsHelperTest < ActionView::TestCase
Rails.application.config.assets.digests = {'logo.png' => 'logo-d1g3st.png'}
@config.assets.digest = false
- assert_match %r{/assets/logo.png},
+ assert_equal '/assets/logo.png',
asset_path("logo.png")
end
end