spec/integration/support/server.rb in httpi-2.4.5 vs spec/integration/support/server.rb in httpi-2.5.0

- old
+ new

@@ -2,11 +2,10 @@ require "puma/minissl" require "integration/support/application" class IntegrationServer - def self.run(options = {}) server = new(options) server.run server end @@ -74,10 +73,10 @@ def ssl_context context = Puma::MiniSSL::Context.new context.key = IntegrationServer.ssl_key_file context.cert = IntegrationServer.ssl_cert_file - context.verify_mode = Puma::MiniSSL::VERIFY_PEER + context.verify_mode = Puma::MiniSSL::VERIFY_NONE context end end