aboutsummaryrefslogtreecommitdiffstats
path: root/actionview
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2019-03-27 08:38:57 +0900
committerGitHub <noreply@github.com>2019-03-27 08:38:57 +0900
commitbde5f3bfc6c16fd9f0c1acff2976a4bfff50b02f (patch)
treedf09e37077dd2f032622436abe473f929958a8a7 /actionview
parentc2093cdf8e48ccc4211195c3523319a1767a205a (diff)
parent1e1adadb417d8265e68a50cf2e8d541f86ea7805 (diff)
downloadrails-bde5f3bfc6c16fd9f0c1acff2976a4bfff50b02f.tar.gz
rails-bde5f3bfc6c16fd9f0c1acff2976a4bfff50b02f.tar.bz2
rails-bde5f3bfc6c16fd9f0c1acff2976a4bfff50b02f.zip
Merge pull request #35761 from koic/bump_rubocop_to_0_66_0
Bump RuboCop to 0.66.0
Diffstat (limited to 'actionview')
-rw-r--r--actionview/test/actionpack/abstract/abstract_controller_test.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/actionview/test/actionpack/abstract/abstract_controller_test.rb b/actionview/test/actionpack/abstract/abstract_controller_test.rb
index 4d4e2b8ef2..eecc19d413 100644
--- a/actionview/test/actionpack/abstract/abstract_controller_test.rb
+++ b/actionview/test/actionpack/abstract/abstract_controller_test.rb
@@ -229,11 +229,11 @@ module AbstractController
end
class ActionMissingRespondToActionController < AbstractController::Base
- # No actions
- private
- def action_missing(action_name)
- self.response_body = "success"
- end
+ # No actions
+ private
+ def action_missing(action_name)
+ self.response_body = "success"
+ end
end
class RespondToActionController < AbstractController::Base