mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
TestIntegration#thread_run_refused - add Errno::EBADF for Darwin
Fixes intermittent CI failures
This commit is contained in:
parent
a02f9241ae
commit
7a68835545
1 changed files with 1 additions and 1 deletions
|
@ -178,7 +178,7 @@ class TestIntegration < Minitest::Test
|
||||||
if unix
|
if unix
|
||||||
[Errno::ENOENT, IOError]
|
[Errno::ENOENT, IOError]
|
||||||
else
|
else
|
||||||
DARWIN ? [Errno::ECONNREFUSED, Errno::EPIPE, EOFError] :
|
DARWIN ? [Errno::EBADF, Errno::ECONNREFUSED, Errno::EPIPE, EOFError] :
|
||||||
[Errno::ECONNREFUSED]
|
[Errno::ECONNREFUSED]
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue