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

Avoid Ruby warnings

This commit is contained in:
Olle Jonsson 2018-12-28 18:46:07 +01:00
parent 2668597ec1
commit fc9ddce98c
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
begin
require 'io/wait'
rescue LoadError
rescue LoadError
end
module Puma

View file

@ -147,7 +147,7 @@ class TestPumaServerSSLClient < Minitest::Test
events = SSLEventsHelper.new STDOUT, STDERR
server = Puma::Server.new app, events
ssl_listener = server.add_ssl_listener host, port, ctx
server.add_ssl_listener host, port, ctx
server.run
http = Net::HTTP.new host, port