Update box add commands in acceptance tests

This commit is contained in:
Chris Roberts 2017-02-22 06:13:04 -08:00
parent fbe9e22a87
commit 578c38e336
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ shared_examples 'provider/linked_clone' do |provider, options|
before do
environment.skeleton('linked_clone')
assert_execute('vagrant', 'box', 'add', 'basic', options[:box])
assert_execute('vagrant', 'box', 'add', options[:box])
end
after do

View File

@ -8,7 +8,7 @@ shared_examples "provider/network/intnet" do |provider, options|
before do
environment.skeleton("network_intnet")
assert_execute("vagrant", "box", "add", "box", options[:box])
assert_execute("vagrant", "box", "add", options[:box])
assert_execute("vagrant", "up", "--provider=#{provider}")
end