aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/application/assets_test.rb
diff options
context:
space:
mode:
authorKoichi ITO <koic.ito@gmail.com>2017-08-12 20:31:46 +0900
committerKoichi ITO <koic.ito@gmail.com>2017-08-16 17:55:25 +0900
commit7c260ae20170159f85d8b7ded1209f12653934fc (patch)
tree7a47c50110652ed74e5984e59d50699e20b64f30 /railties/test/application/assets_test.rb
parent11fd246d8f6406aa5165ebf45ca8f17c67716f7e (diff)
downloadrails-7c260ae20170159f85d8b7ded1209f12653934fc.tar.gz
rails-7c260ae20170159f85d8b7ded1209f12653934fc.tar.bz2
rails-7c260ae20170159f85d8b7ded1209f12653934fc.zip
Fix RuboCop offenses
And enable `context_dependent` of Style/BracesAroundHashParameters cop.
Diffstat (limited to 'railties/test/application/assets_test.rb')
-rw-r--r--railties/test/application/assets_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/test/application/assets_test.rb b/railties/test/application/assets_test.rb
index e0afc67174..99fe6749d9 100644
--- a/railties/test/application/assets_test.rb
+++ b/railties/test/application/assets_test.rb
@@ -477,9 +477,9 @@ module ApplicationTests
class ::PostsController < ActionController::Base; end
- get "/posts", {}, "HTTPS" => "off"
+ get "/posts", {}, { "HTTPS" => "off" }
assert_match('src="http://example.com/assets/application.self.js', last_response.body)
- get "/posts", {}, "HTTPS" => "on"
+ get "/posts", {}, { "HTTPS" => "on" }
assert_match('src="https://example.com/assets/application.self.js', last_response.body)
end