aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib')
-rw-r--r--actionpack/lib/action_controller/test_process.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/actionpack/lib/action_controller/test_process.rb b/actionpack/lib/action_controller/test_process.rb
index b248626fa4..550b8a340d 100644
--- a/actionpack/lib/action_controller/test_process.rb
+++ b/actionpack/lib/action_controller/test_process.rb
@@ -57,10 +57,10 @@ module ActionController #:nodoc:
end
def initialize_default_values
- @host = "test.host"
- @request_uri = "/"
- @remote_addr = "127.0.0.1"
- @env["SERVER_PORT"] = 80
+ @host = "test.host"
+ @request_uri = "/"
+ @remote_addr, @remote_ip = "127.0.0.1"
+ @env["SERVER_PORT"] = 80
end
end