1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

Fix rubocop violations that don't get run as part of test target

This commit is contained in:
Eleanor Allison 2017-12-01 19:06:33 +00:00
parent 0de155b627
commit 98ab5f62ed
2 changed files with 2 additions and 3 deletions

View file

@ -8,7 +8,6 @@ gem "rake-compiler"
gem "rack", "< 3.0"
gem "minitest", "~> 5.9"
gem "minitest-retry"
gem "pry-byebug"
gem "jruby-openssl", :platform => "jruby"

View file

@ -46,7 +46,7 @@ class TestBinder < Minitest::Test
def test_binder_parses_jruby_ssl_options
skip unless Puma.jruby?
keystore = File.expand_path "../../examples/puma/keystore.jks"
ssl_cipher_list = "TLS_DHE_RSA_WITH_DES_CBC_SHA,TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA"
@binder.parse(["ssl://0.0.0.0?keystore=#{keystore}&ssl_cipher_list=#{ssl_cipher_list}"], @events)
@ -56,4 +56,4 @@ class TestBinder < Minitest::Test
assert_equal(keystore, ctx.keystore)
assert_equal(ssl_cipher_list, ctx.ssl_cipher_list)
end
end
end