aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2017-03-21 16:51:56 -0400
committerRafael Mendonça França <rafaelmfranca@gmail.com>2017-03-21 16:51:56 -0400
commitb7bd4e2848145fe6b342d510b9e250ab7799563c (patch)
tree451e150cf3085c0df8c66aa22f6f5901f448908d
parent681277e53bf084195eab437b3006043bbd40ef4d (diff)
downloadrails-b7bd4e2848145fe6b342d510b9e250ab7799563c.tar.gz
rails-b7bd4e2848145fe6b342d510b9e250ab7799563c.tar.bz2
rails-b7bd4e2848145fe6b342d510b9e250ab7799563c.zip
Fix test assertion
-rw-r--r--actionpack/test/controller/test_case_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/test_case_test.rb b/actionpack/test/controller/test_case_test.rb
index cd0c790b08..3a4307b64b 100644
--- a/actionpack/test/controller/test_case_test.rb
+++ b/actionpack/test/controller/test_case_test.rb
@@ -681,7 +681,7 @@ XML
def test_path_is_kept_after_the_request
get :test_params, params: { id: "foo" }
- assert_equal "foo", @request.path
+ assert_equal "/test_case_test/test/test_params/foo", @request.path
end
def test_path_params_reset_between_request