diff options
author | schneems <richard.schneeman@gmail.com> | 2016-08-18 15:24:20 -0500 |
---|---|---|
committer | schneems <richard.schneeman@gmail.com> | 2016-08-29 13:16:07 -0500 |
commit | a22164a282b013e1b3305ea457b84656fba12c2e (patch) | |
tree | 8389ac0096d6af11ab6f0815785277c6206a1c8e /railties/test | |
parent | 9b22681cfc6b98343a8de0fbc0e2527aa688f36a (diff) | |
download | rails-a22164a282b013e1b3305ea457b84656fba12c2e.tar.gz rails-a22164a282b013e1b3305ea457b84656fba12c2e.tar.bz2 rails-a22164a282b013e1b3305ea457b84656fba12c2e.zip |
Fix formatting
Diffstat (limited to 'railties/test')
-rw-r--r-- | railties/test/application/asset_debugging_test.rb | 6 |
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 }") |