diff options
author | Arthur Neves <arthurnn@gmail.com> | 2014-07-18 13:27:43 -0400 |
---|---|---|
committer | Arthur Neves <arthurnn@gmail.com> | 2014-07-18 13:27:43 -0400 |
commit | 86433b8d5f1a7d28e0bb6ceeaf824e67acf4b759 (patch) | |
tree | 3e30811477b1a74445772bf03b846b70f85d389b /actionpack/test | |
parent | 9ff18e4626ceb3e50b81b2966d304d02160b619e (diff) | |
download | rails-86433b8d5f1a7d28e0bb6ceeaf824e67acf4b759.tar.gz rails-86433b8d5f1a7d28e0bb6ceeaf824e67acf4b759.tar.bz2 rails-86433b8d5f1a7d28e0bb6ceeaf824e67acf4b759.zip |
Add CHANGELOG for #14886
Also cleanup test a bit
[related #14886]
[related #14743]
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/dispatch/request_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/dispatch/request_test.rb b/actionpack/test/dispatch/request_test.rb index beae95f3fd..2763bd661f 100644 --- a/actionpack/test/dispatch/request_test.rb +++ b/actionpack/test/dispatch/request_test.rb @@ -531,7 +531,7 @@ end class LocalhostTest < BaseRequestTest test "IPs that match localhost" do request = stub_request("REMOTE_IP" => "127.1.1.1", "REMOTE_ADDR" => "127.1.1.1") - assert_equal !!request.local?, true + assert request.local? end end |