aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/dispatch
diff options
context:
space:
mode:
authoralkesh26 <alkesh26@gmail.com>2019-01-22 22:27:01 +0530
committeralkesh26 <alkesh26@gmail.com>2019-01-22 22:27:01 +0530
commit78cf58b7657a60d50046c044b8dad7b2800304f0 (patch)
tree9771a0db82c948b124d6a9c273655068ca65f3a6 /actionpack/test/dispatch
parente26f0658da7ff7e9382d6040fe76c087ff1791e4 (diff)
downloadrails-78cf58b7657a60d50046c044b8dad7b2800304f0.tar.gz
rails-78cf58b7657a60d50046c044b8dad7b2800304f0.tar.bz2
rails-78cf58b7657a60d50046c044b8dad7b2800304f0.zip
1. Replaced unused variables by `_`.
2. Typo fixes.
Diffstat (limited to 'actionpack/test/dispatch')
-rw-r--r--actionpack/test/dispatch/debug_exceptions_test.rb2
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 c326f276bf..aadc6be077 100644
--- a/actionpack/test/dispatch/debug_exceptions_test.rb
+++ b/actionpack/test/dispatch/debug_exceptions_test.rb
@@ -8,7 +8,7 @@ class DebugExceptionsTest < ActionDispatch::IntegrationTest
class Boomer
attr_accessor :closed
- def initialize(detailed = false)
+ def initialize(detailed = false)
@detailed = detailed
@closed = false
end