Skip to content

Commit 015ab34

Browse files
authored
Update test_charge_point.py
1 parent 3664eb9 commit 015ab34

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

tests/test_charge_point.py

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -43,20 +43,20 @@ async def test_cms_responses(hass):
4343
) as ws:
4444

4545
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+
#)
6060
await hass.async_block_till_done()
6161

6262

0 commit comments

Comments
 (0)