mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Boto uses False for is_default instead of None
This commit is contained in:
parent
5a923b3aa9
commit
2f77152479
1 changed files with 1 additions and 1 deletions
|
@ -441,7 +441,7 @@ class BotoVpcTestCase(BotoVpcTestCaseBase):
|
|||
describe_vpc = boto_vpc.describe(vpc_id=vpc.id, **conn_parameters)
|
||||
|
||||
vpc_properties = dict(cidr_block=unicode(cidr_block),
|
||||
is_default=None,
|
||||
is_default=False,
|
||||
state=u'available',
|
||||
tags={'Name': 'test', 'test': 'testvalue'},
|
||||
dhcp_options_id=u'dopt-7a8b9c2d',
|
||||
|
|
Loading…
Add table
Reference in a new issue