File tree Expand file tree Collapse file tree 4 files changed +8
-3
lines changed
tests/unit_tests/instance_types Expand file tree Collapse file tree 4 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 11Changelog
22=========
33
4+ v1.1.2 (2023-03-02)
5+ -------------------
6+
7+ * Fixed bug where the wrong property name was used
8+
49v1.1.1 (2023-02-23)
510-------------------
611
Original file line number Diff line number Diff line change 1- VERSION = '1.1.1 '
1+ VERSION = '1.1.2 '
Original file line number Diff line number Diff line change @@ -161,7 +161,7 @@ def get(self) -> List[InstanceType]:
161161 instance_type_objects = list (map (lambda instance_type : InstanceType (
162162 id = instance_type ['id' ],
163163 instance_type = instance_type ['instance_type' ],
164- price_per_hour = instance_type ['pricePerHour ' ],
164+ price_per_hour = instance_type ['price_per_hour ' ],
165165 description = instance_type ['description' ],
166166 cpu = instance_type ['cpu' ],
167167 gpu = instance_type ['gpu' ],
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ def test_instance_types(http_client):
4747 "size_in_gigabytes" : STORAGE_SIZE
4848 },
4949 "description" : INSTANCE_TYPE_DESCRIPTION ,
50- "pricePerHour " : "5.00" ,
50+ "price_per_hour " : "5.00" ,
5151 "instance_type" : INSTANCE_TYPE
5252 }
5353 ],
You can’t perform that action at this time.
0 commit comments