mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
[glesys] Fix error in ip tests
This commit is contained in:
parent
a8acfdd8c2
commit
96565d62dc
1 changed files with 4 additions and 4 deletions
|
@ -5,7 +5,7 @@ class Glesys
|
|||
|
||||
LIST = {
|
||||
'debug' => {
|
||||
'input' => []
|
||||
'input' => Array
|
||||
},
|
||||
'servers' => [{
|
||||
'serverid' => String,
|
||||
|
@ -161,7 +161,7 @@ class Glesys
|
|||
'netmask' => Fog::Nullable::String,
|
||||
'broadcast' => Fog::Nullable::String,
|
||||
'gateway' => Fog::Nullable::String,
|
||||
'nameservers' => [],
|
||||
'nameservers' => Array,
|
||||
'datacenter' => String,
|
||||
'serverid' => Fog::Nullable::String,
|
||||
'platform' => String,
|
||||
|
@ -189,7 +189,7 @@ class Glesys
|
|||
'ipversion' => Integer,
|
||||
'datacenter' => String,
|
||||
'platform' => String,
|
||||
"ipaddresses" => []
|
||||
"ipaddresses" => Array
|
||||
},
|
||||
'status' => {
|
||||
'timestamp' => String,
|
||||
|
@ -214,7 +214,7 @@ class Glesys
|
|||
'netmask' => String,
|
||||
'broadcast' => String,
|
||||
'gateway' => String,
|
||||
'nameservers' => [],
|
||||
'nameservers' => Array,
|
||||
'datacenter' => String,
|
||||
'serverid' => Fog::Nullable::String,
|
||||
'platform' => String,
|
||||
|
|
Loading…
Reference in a new issue