Merge pull request #11665 from jbonhag/fixup/stub-not-in-installer

Default #in_installer? to false
This commit is contained in:
Jeff Bonhag 2020-06-03 12:07:51 -04:00 committed by GitHub
commit 5e123e473f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,6 +19,7 @@ describe Vagrant::Util::Downloader do
before :each do
allow(Vagrant::Util::Subprocess).to receive(:execute).and_return(subprocess_result)
allow(Vagrant).to receive(:in_installer?).and_return(false)
end
describe "#download!" do