diff options
author | Jake Worth <jakeworth82@gmail.com> | 2015-11-12 10:06:44 -0600 |
---|---|---|
committer | Jake Worth <jakeworth82@gmail.com> | 2015-11-12 10:06:44 -0600 |
commit | 432c7a5b76e0ad15142f650bd99761136a269ecb (patch) | |
tree | 13d53d6b3604e05dc1bee306a9a57aa203a30286 /actionpack/test | |
parent | 19398ab98af04eedb2574890ed0d8ecdf82ebb4c (diff) | |
download | rails-432c7a5b76e0ad15142f650bd99761136a269ecb.tar.gz rails-432c7a5b76e0ad15142f650bd99761136a269ecb.tar.bz2 rails-432c7a5b76e0ad15142f650bd99761136a269ecb.zip |
Fix typo [ci skip]
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/dispatch/debug_exceptions_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/dispatch/debug_exceptions_test.rb b/actionpack/test/dispatch/debug_exceptions_test.rb index 89c3e75a50..8960156d00 100644 --- a/actionpack/test/dispatch/debug_exceptions_test.rb +++ b/actionpack/test/dispatch/debug_exceptions_test.rb @@ -364,7 +364,7 @@ class DebugExceptionsTest < ActionDispatch::IntegrationTest assert_select 'pre code a:first', %r{test/dispatch/debug_exceptions_test\.rb:\d+:in `call} end - # assert framework trace that that threw the error is first + # assert framework trace that threw the error is first assert_select '#Framework-Trace' do assert_select 'pre code a:first', /method_that_raises/ end |