diff options
author | Prathamesh Sonpatki <csonpatki@gmail.com> | 2016-01-07 13:52:08 +0530 |
---|---|---|
committer | Prathamesh Sonpatki <csonpatki@gmail.com> | 2016-01-07 13:53:10 +0530 |
commit | 70e73e4d4c60b9e22279ff2f7d9001c376854e86 (patch) | |
tree | d35c0fef54c43f04d7abe7d7c6e9ee8068199bb2 /actionpack | |
parent | 21dd85f1ee0fb26007e5773226de3df07cbcfe39 (diff) | |
download | rails-70e73e4d4c60b9e22279ff2f7d9001c376854e86.tar.gz rails-70e73e4d4c60b9e22279ff2f7d9001c376854e86.tar.bz2 rails-70e73e4d4c60b9e22279ff2f7d9001c376854e86.zip |
Remove splat operator warning from ssl_test
- Removes following warning -
`rails/actionpack/test/dispatch/ssl_test.rb:203: warning: `*' interpreted as argument prefix`.
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/test/dispatch/ssl_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/dispatch/ssl_test.rb b/actionpack/test/dispatch/ssl_test.rb index 11251c86e7..c66a0e6a7a 100644 --- a/actionpack/test/dispatch/ssl_test.rb +++ b/actionpack/test/dispatch/ssl_test.rb @@ -199,7 +199,7 @@ class SecureCookiesTest < SSLTest def test_cookies_as_not_secure_with_secure_cookies_disabled get headers: { 'Set-Cookie' => DEFAULT }, ssl_options: { secure_cookies: false } - assert_cookies *DEFAULT.split("\n") + assert_cookies(*DEFAULT.split("\n")) end def test_no_cookies |