mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
Fix bad skip
This commit is contained in:
parent
a4b8857c04
commit
89be0977fc
1 changed files with 3 additions and 3 deletions
|
@ -63,7 +63,7 @@ class TestCLI < Minitest::Test
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_control_for_ssl
|
def test_control_for_ssl
|
||||||
skip :jruby # Hangs on CI, TODO fix
|
skip_on :jruby # Hangs on CI, TODO fix
|
||||||
require "net/http"
|
require "net/http"
|
||||||
control_port = UniquePort.call
|
control_port = UniquePort.call
|
||||||
control_host = "127.0.0.1"
|
control_host = "127.0.0.1"
|
||||||
|
@ -94,8 +94,8 @@ class TestCLI < Minitest::Test
|
||||||
assert_equal([:started_at, :backlog, :running, :pool_capacity, :max_threads, :requests_count], Puma.stats.keys)
|
assert_equal([:started_at, :backlog, :running, :pool_capacity, :max_threads, :requests_count], Puma.stats.keys)
|
||||||
|
|
||||||
ensure
|
ensure
|
||||||
cli.launcher.stop
|
cli.launcher.stop if cli
|
||||||
t.join
|
t.join if t
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_control_clustered
|
def test_control_clustered
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue