mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
fix subnet tests in mocking mode
This commit is contained in:
parent
b851239f5d
commit
cee8409ed2
2 changed files with 2 additions and 2 deletions
|
@ -54,7 +54,7 @@ module Fog
|
|||
'state' => 'pending',
|
||||
'vpcId' => Fog::AWS::Mock.request_id,
|
||||
'cidrBlock' => cidrBlock,
|
||||
'availableIpAddressCount' => 16,
|
||||
'availableIpAddressCount' => "255",
|
||||
'availabilityZone' => av_zone,
|
||||
'tagSet' => {}
|
||||
]
|
||||
|
|
|
@ -53,7 +53,7 @@ module Fog
|
|||
'state' => 'pending',
|
||||
'vpcId' => Fog::AWS::Mock.request_id,
|
||||
'cidrBlock' => '10.255.255.0/24',
|
||||
'availableIpAddressCount' => 255,
|
||||
'availableIpAddressCount' => "255",
|
||||
'availabilityZone' => 'us-east-1c',
|
||||
'tagSet' => {}
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue