aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib')
-rw-r--r--actionpack/lib/action_dispatch/testing/integration.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_dispatch/testing/integration.rb b/actionpack/lib/action_dispatch/testing/integration.rb
index fa6ff03e9c..db6233840a 100644
--- a/actionpack/lib/action_dispatch/testing/integration.rb
+++ b/actionpack/lib/action_dispatch/testing/integration.rb
@@ -34,7 +34,7 @@ module ActionDispatch
# Example:
#
# get '/feed', params: { since: 201501011400 }
- # post '/profile', headers: {"X-Test-Header" => "testvalue" }
+ # post '/profile', headers: { "X-Test-Header" => "testvalue" }
def get(path, *args)
process_with_kwargs(:get, path, *args)
end
@@ -118,7 +118,7 @@ module ActionDispatch
#
# request_via_redirect :post, '/welcome',
# params: { ref_id: 14 },
- # headers: {"X-Test-Header" => "testvalue"}
+ # headers: { "X-Test-Header" => "testvalue" }
def request_via_redirect(http_method, path, *args)
process_with_kwargs(http_method, path, *args)