Merge pull request #10124 from briancain/fixup-subprocess-tests-darwin

Fix up subprocess test to not be darwin
This commit is contained in:
Brian Cain 2018-08-17 15:10:25 -07:00 committed by GitHub
commit f9892e0b24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -74,6 +74,7 @@ describe Vagrant::Util::Subprocess do
allow(ChildProcess).to receive(:build).and_return(process)
allow(Vagrant).to receive(:installer_embedded_dir).and_return(appimage_path)
allow(Vagrant).to receive(:user_data_path).and_return("")
allow(Vagrant::Util::Platform).to receive(:darwin?).and_return(false)
end
after { subject.execute }