diff options
author | Gaurav Sharma <gaurav2728@gmail.com> | 2015-03-22 09:34:01 +0530 |
---|---|---|
committer | Gaurav Sharma <gaurav2728@gmail.com> | 2015-03-23 11:18:14 +0530 |
commit | 29efc6ee05d00a55e6f901223c4db55ea66b9992 (patch) | |
tree | 2726251be03b4ed1ca1e5c0aceaa43d1b84b1296 /actionpack | |
parent | 5d6500535c5bdb7691e3aead7615e4906f7128c0 (diff) | |
download | rails-29efc6ee05d00a55e6f901223c4db55ea66b9992.tar.gz rails-29efc6ee05d00a55e6f901223c4db55ea66b9992.tar.bz2 rails-29efc6ee05d00a55e6f901223c4db55ea66b9992.zip |
remove old unavailable link with relevant fix
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/test/controller/redirect_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/test/controller/redirect_test.rb b/actionpack/test/controller/redirect_test.rb index 103ca9c776..efd790de63 100644 --- a/actionpack/test/controller/redirect_test.rb +++ b/actionpack/test/controller/redirect_test.rb @@ -63,7 +63,7 @@ class RedirectController < ActionController::Base end def redirect_to_url_with_unescaped_query_string - redirect_to "http://dev.rubyonrails.org/query?status=new" + redirect_to "http://example.com/query?status=new" end def redirect_to_url_with_complex_scheme @@ -233,7 +233,7 @@ class RedirectTest < ActionController::TestCase def test_redirect_to_url_with_unescaped_query_string get :redirect_to_url_with_unescaped_query_string assert_response :redirect - assert_redirected_to "http://dev.rubyonrails.org/query?status=new" + assert_redirected_to "http://example.com/query?status=new" end def test_redirect_to_url_with_complex_scheme |