DEV: correct flaky test, insufficient timeout

In some cases with all the new mitigations the 10ms delay is no longer
enough. Wait up to 1 second here instead.
This commit is contained in:
Sam Saffron 2019-05-27 17:08:35 +10:00
parent 6580025af9
commit 170c66c190
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ describe Scheduler::Defer do
x = 3 x = 3
end end
wait_for(10) do wait_for(1000) do
x == 3 x == 3
end end