aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorschneems <richard.schneeman@gmail.com>2016-08-18 15:24:20 -0500
committerschneems <richard.schneeman@gmail.com>2016-08-29 13:16:07 -0500
commita22164a282b013e1b3305ea457b84656fba12c2e (patch)
tree8389ac0096d6af11ab6f0815785277c6206a1c8e /railties
parent9b22681cfc6b98343a8de0fbc0e2527aa688f36a (diff)
downloadrails-a22164a282b013e1b3305ea457b84656fba12c2e.tar.gz
rails-a22164a282b013e1b3305ea457b84656fba12c2e.tar.bz2
rails-a22164a282b013e1b3305ea457b84656fba12c2e.zip
Fix formatting
Diffstat (limited to 'railties')
-rw-r--r--railties/test/application/asset_debugging_test.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/railties/test/application/asset_debugging_test.rb b/railties/test/application/asset_debugging_test.rb
index bbaabdb077..1d27cecd3c 100644
--- a/railties/test/application/asset_debugging_test.rb
+++ b/railties/test/application/asset_debugging_test.rb
@@ -94,7 +94,7 @@ module ApplicationTests
class ::PostsController < ActionController::Base ; end
- get '/posts?debug_assets=true'
+ get "/posts?debug_assets=true"
body = last_response.body
assert_match(tag_match, body, "Expected `#{view_method}` to produce a match to #{ tag_match }, but did not: #{ body }")
@@ -120,7 +120,7 @@ module ApplicationTests
class ::PostsController < ActionController::Base ; end
- get '/posts?debug_assets=true'
+ get "/posts?debug_assets=true"
body = last_response.body
assert_match(tag_match, body, "Expected `#{view_method}` to produce a match to #{ tag_match }, but did not: #{ body }")
@@ -140,7 +140,7 @@ module ApplicationTests
class ::PostsController < ActionController::Base ; end
- get '/posts?debug_assets=true'
+ get "/posts?debug_assets=true"
body = last_response.body.strip
assert_match(tag_match, body, "Expected `#{view_method}` to produce a match to #{ tag_match }, but did not: #{ body }")