diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2017-03-21 16:51:56 -0400 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2017-03-21 16:51:56 -0400 |
commit | b7bd4e2848145fe6b342d510b9e250ab7799563c (patch) | |
tree | 451e150cf3085c0df8c66aa22f6f5901f448908d | |
parent | 681277e53bf084195eab437b3006043bbd40ef4d (diff) | |
download | rails-b7bd4e2848145fe6b342d510b9e250ab7799563c.tar.gz rails-b7bd4e2848145fe6b342d510b9e250ab7799563c.tar.bz2 rails-b7bd4e2848145fe6b342d510b9e250ab7799563c.zip |
Fix test assertion
-rw-r--r-- | actionpack/test/controller/test_case_test.rb | 2 |
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 |