fix virtualbox network rake tests

This commit is contained in:
Joshua Colson 2019-07-21 20:17:52 -07:00
parent d80968433c
commit 837dff00b8
2 changed files with 3 additions and 1 deletions

View File

@ -248,10 +248,10 @@ module VagrantPlugins
def hostonly_config(options)
options = {
auto_config: true,
dhcp_server: true,
mac: nil,
nic_type: nil,
type: :static,
dhcp_server: true,
}.merge(options)
# Make sure the type is a symbol
@ -321,6 +321,7 @@ module VagrantPlugins
return {
adapter_ip: options[:adapter_ip],
auto_config: options[:auto_config],
dhcp_server: options[:dhcp_server],
ip: options[:ip],
mac: options[:mac],
name: options[:name],

View File

@ -123,6 +123,7 @@ describe VagrantPlugins::ProviderVirtualBox::Action::Network do
dhcp_ip: "172.28.128.2",
dhcp_lower: "172.28.128.3",
dhcp_upper: "172.28.128.254",
dhcp_server: true,
adapter: 2
})