Fix up subprocess test to not be darwin
This commit is contained in:
parent
64acd68c64
commit
fec681c1af
|
@ -74,6 +74,7 @@ describe Vagrant::Util::Subprocess do
|
||||||
allow(ChildProcess).to receive(:build).and_return(process)
|
allow(ChildProcess).to receive(:build).and_return(process)
|
||||||
allow(Vagrant).to receive(:installer_embedded_dir).and_return(appimage_path)
|
allow(Vagrant).to receive(:installer_embedded_dir).and_return(appimage_path)
|
||||||
allow(Vagrant).to receive(:user_data_path).and_return("")
|
allow(Vagrant).to receive(:user_data_path).and_return("")
|
||||||
|
allow(Vagrant::Util::Platform).to receive(:darwin?).and_return(false)
|
||||||
end
|
end
|
||||||
|
|
||||||
after { subject.execute }
|
after { subject.execute }
|
||||||
|
|
Loading…
Reference in New Issue