Skip to content

Commit

Permalink
TestIntegration#thread_run_refused - add Errno::EBADF for Darwin
Browse files Browse the repository at this point in the history
Fixes intermittent CI failures
  • Loading branch information
MSP-Greg committed Apr 24, 2021
1 parent a02f924 commit 7a68835
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/helpers/integration.rb
Expand Up @@ -178,7 +178,7 @@ def thread_run_refused(unix: false)
if unix
[Errno::ENOENT, IOError]
else
DARWIN ? [Errno::ECONNREFUSED, Errno::EPIPE, EOFError] :
DARWIN ? [Errno::EBADF, Errno::ECONNREFUSED, Errno::EPIPE, EOFError] :
[Errno::ECONNREFUSED]
end
end
Expand Down

0 comments on commit 7a68835

Please sign in to comment.