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

Fix path of test file

This commit is contained in:
Eleanor Allison 2017-12-04 19:39:17 +00:00
parent 98ab5f62ed
commit 6ba53b0e7c

View file

@ -47,7 +47,7 @@ class TestBinder < Minitest::Test
def test_binder_parses_jruby_ssl_options
skip unless Puma.jruby?
keystore = File.expand_path "../../examples/puma/keystore.jks"
keystore = File.expand_path "../../examples/puma/keystore.jks", __FILE__
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)