diff options
author | Robin Dupret <robin.dupret@gmail.com> | 2015-02-27 14:25:43 +0100 |
---|---|---|
committer | Robin Dupret <robin.dupret@gmail.com> | 2015-03-02 14:05:07 +0100 |
commit | 586fe4471d3a71b7500f734d26b28427332b6e43 (patch) | |
tree | b00f3580fee93df4bb720890b42297d8d1aeef00 /actionpack/test | |
parent | 022c8be2cfee97b76c38e5134aa223f62938d6bf (diff) | |
download | rails-586fe4471d3a71b7500f734d26b28427332b6e43.tar.gz rails-586fe4471d3a71b7500f734d26b28427332b6e43.tar.bz2 rails-586fe4471d3a71b7500f734d26b28427332b6e43.zip |
Avoid accurate assertions on error messages
Since there are disparities between the raised error messages on the
different implementations, let's avoid being too accurate.
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/dispatch/debug_exceptions_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/test/dispatch/debug_exceptions_test.rb b/actionpack/test/dispatch/debug_exceptions_test.rb index 7921f05688..a867aee7ec 100644 --- a/actionpack/test/dispatch/debug_exceptions_test.rb +++ b/actionpack/test/dispatch/debug_exceptions_test.rb @@ -305,7 +305,7 @@ class DebugExceptionsTest < ActionDispatch::IntegrationTest assert_response 500 assert_select '#Application-Trace' do - assert_select 'pre code', /\(eval\):1: syntax error, unexpected/ + assert_select 'pre code', /syntax error, unexpected/ end end @@ -332,7 +332,7 @@ class DebugExceptionsTest < ActionDispatch::IntegrationTest assert_response 500 assert_select '#Application-Trace' do - assert_select 'pre code', /\(eval\):1: syntax error, unexpected/ + assert_select 'pre code', /syntax error, unexpected/ end end |