summaryrefslogtreecommitdiff
path: root/spec/support/helpers/test_request_helpers.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/helpers/test_request_helpers.rb')
-rw-r--r--spec/support/helpers/test_request_helpers.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/support/helpers/test_request_helpers.rb b/spec/support/helpers/test_request_helpers.rb
index 5a84d67bdfc..39e5dafb059 100644
--- a/spec/support/helpers/test_request_helpers.rb
+++ b/spec/support/helpers/test_request_helpers.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
module TestRequestHelpers
- def test_request(remote_ip: '127.0.0.1')
- ActionController::TestRequest.new({ remote_ip: remote_ip }, ActionController::TestSession.new)
+ def test_request(remote_ip: '127.0.0.1', controller: nil)
+ ActionController::TestRequest.new({ remote_ip: remote_ip }, ActionController::TestSession.new, controller)
end
end