From ccbdcd46d0074e911da3b94562829adeec2ca9c0 Mon Sep 17 00:00:00 2001 From: sophia Date: Wed, 10 Feb 2021 11:33:33 -0600 Subject: [PATCH] Fix minimal Vagrantfile test A minimal Vagrantfile may set the vi mode for ruby --- test/unit/plugins/commands/init/command_test.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/test/unit/plugins/commands/init/command_test.rb b/test/unit/plugins/commands/init/command_test.rb index 34da3cd77..6bb86fa83 100644 --- a/test/unit/plugins/commands/init/command_test.rb +++ b/test/unit/plugins/commands/init/command_test.rb @@ -33,7 +33,6 @@ describe VagrantPlugins::CommandInit::Command do it "creates a minimal Vagrantfile" do described_class.new(["-m"], env).execute contents = File.read(vagrantfile_path) - expect(contents).to_not match(/#/) expect(contents).to_not match(/provision/) end