From fec681c1af7b824b64143d802e260b899b2a9fb4 Mon Sep 17 00:00:00 2001 From: Brian Cain Date: Thu, 16 Aug 2018 14:57:56 -0700 Subject: [PATCH] Fix up subprocess test to not be darwin --- test/unit/vagrant/util/subprocess_test.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/test/unit/vagrant/util/subprocess_test.rb b/test/unit/vagrant/util/subprocess_test.rb index 8b8dc81ba..0fd69818b 100644 --- a/test/unit/vagrant/util/subprocess_test.rb +++ b/test/unit/vagrant/util/subprocess_test.rb @@ -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 }