diff options
author | Eileen M. Uchitelle <eileencodes@gmail.com> | 2015-04-11 08:48:51 -0400 |
---|---|---|
committer | Eileen M. Uchitelle <eileencodes@gmail.com> | 2015-04-11 08:48:51 -0400 |
commit | 24970a69cbfa91e3e9322c88e620663a84035bda (patch) | |
tree | 0b0e12191b853e13957720c9ef275b6ca8374e8c /actionpack | |
parent | 6ad9e2c4a5d00ad8ca379344f26d01be86a610ba (diff) | |
parent | 3449da4a6caa69ea11aecddff7e637793e8bd250 (diff) | |
download | rails-24970a69cbfa91e3e9322c88e620663a84035bda.tar.gz rails-24970a69cbfa91e3e9322c88e620663a84035bda.tar.bz2 rails-24970a69cbfa91e3e9322c88e620663a84035bda.zip |
Merge pull request #19727 from supercaracal/fix_wrong_test_method_name
fix a wrong feature test method name
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/test/controller/force_ssl_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/force_ssl_test.rb b/actionpack/test/controller/force_ssl_test.rb index a1bb1cee58..e1e423675f 100644 --- a/actionpack/test/controller/force_ssl_test.rb +++ b/actionpack/test/controller/force_ssl_test.rb @@ -315,7 +315,7 @@ class RedirectToSSLTest < ActionController::TestCase assert_equal "https://secure.cheeseburger.host/redirect_to_ssl/cheeseburger", redirect_to_url end - def test_banana_does_not_redirect_if_already_https + def test_cheeseburgers_does_not_redirect_if_already_https request.env['HTTPS'] = 'on' get :cheeseburger assert_response 200 |