File tree Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -43,20 +43,20 @@ async def test_cms_responses(hass):
43
43
) as ws :
44
44
45
45
cp = ChargePoint ("CP_1" , ws )
46
- asyncio .gather (
47
- cp .start (),
48
- cp .send_boot_notification (),
49
- cp .send_heartbeat (),
50
- cp .send_authorize (),
51
- cp .send_firmware_status (),
52
- cp .send_data_transfer (),
53
- cp .send_start_transaction (),
54
- cp .send_status_notification (),
55
- cp .send_meter_data (),
56
- cp .send_stop_transaction (),
57
- cs .set_charger_state (cp_id = "CP_1" , service_name = "reset" ),
58
- cs .set_charger_state (cp_id = "CP_1" , service_name = "unlock" ),
59
- )
46
+ # asyncio.gather(
47
+ cp .start ()
48
+ cp .send_boot_notification ()
49
+ cp .send_heartbeat ()
50
+ cp .send_authorize ()
51
+ cp .send_firmware_status ()
52
+ cp .send_data_transfer ()
53
+ cp .send_start_transaction ()
54
+ cp .send_status_notification ()
55
+ cp .send_meter_data ()
56
+ cp .send_stop_transaction ()
57
+ cs .set_charger_state (cp_id = "CP_1" , service_name = "reset" )
58
+ cs .set_charger_state (cp_id = "CP_1" , service_name = "unlock" )
59
+ # )
60
60
await hass .async_block_till_done ()
61
61
62
62
You can’t perform that action at this time.
0 commit comments