Skip to content

Commit

Permalink
Increase maximum time.
Browse files Browse the repository at this point in the history
  • Loading branch information
ioquatix committed Aug 23, 2023
1 parent f109106 commit d1bcf87
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/io/event/selector.rb
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ def transfer
end

expect do
selector.select(0.05)
end.to have_duration(be < 0.05)
selector.select(0.1)
end.to have_duration(be < 0.1)
ensure
thread.join
end
Expand All @@ -69,8 +69,8 @@ def transfer
end

expect do
selector.select(0.05)
end.to have_duration(be < 0.05)
selector.select(0.1)
end.to have_duration(be < 0.1)
ensure
thread.join
end
Expand Down

0 comments on commit d1bcf87

Please sign in to comment.