Allow a bit more time for process to get started

This commit is contained in:
Chris Roberts 2017-07-07 11:11:10 -07:00
parent cef38eefd0
commit 36a50f4d69
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ describe Vagrant::Util::Subprocess do
it "should return true" do
sp = described_class.new("sleep", "5")
thread = Thread.new{ sp.execute }
sleep(0.1)
sleep(0.3)
expect(sp.running?).to be_true
sp.stop
thread.join