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.rb6
1 files changed, 1 insertions, 5 deletions
diff --git a/spec/support/helpers/test_request_helpers.rb b/spec/support/helpers/test_request_helpers.rb
index 187a0e07891..5a84d67bdfc 100644
--- a/spec/support/helpers/test_request_helpers.rb
+++ b/spec/support/helpers/test_request_helpers.rb
@@ -2,10 +2,6 @@
module TestRequestHelpers
def test_request(remote_ip: '127.0.0.1')
- if Gitlab.rails5?
- ActionController::TestRequest.new({ remote_ip: remote_ip }, ActionController::TestSession.new)
- else
- ActionController::TestRequest.new(remote_ip: remote_ip)
- end
+ ActionController::TestRequest.new({ remote_ip: remote_ip }, ActionController::TestSession.new)
end
end