File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -64,6 +64,7 @@ def server_types(self) -> DatacenterServerTypes | None:
6464 def server_types (self , value : DatacenterServerTypes | None ) -> None :
6565 self ._server_types = value
6666
67+
6768class DatacenterServerTypes (BaseDomain ):
6869 """DatacenterServerTypes Domain
6970
Original file line number Diff line number Diff line change @@ -46,15 +46,18 @@ def test_bound_datacenter_init(self, datacenter_response):
4646 assert len (bound_datacenter .server_types .available_for_migration ) == 3
4747 assert bound_datacenter .server_types .available_for_migration [0 ].id == 1
4848 assert (
49- bound_datacenter .server_types .available_for_migration [0 ].complete is False
49+ bound_datacenter .server_types .available_for_migration [0 ].complete
50+ is False
5051 )
5152 assert bound_datacenter .server_types .available_for_migration [1 ].id == 2
5253 assert (
53- bound_datacenter .server_types .available_for_migration [1 ].complete is False
54+ bound_datacenter .server_types .available_for_migration [1 ].complete
55+ is False
5456 )
5557 assert bound_datacenter .server_types .available_for_migration [2 ].id == 3
5658 assert (
57- bound_datacenter .server_types .available_for_migration [2 ].complete is False
59+ bound_datacenter .server_types .available_for_migration [2 ].complete
60+ is False
5861 )
5962
6063
You can’t perform that action at this time.
0 commit comments