Skip to content

Commit a290024

Browse files
authored
Update test_charge_point.py
1 parent 2d4d753 commit a290024

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_charge_point.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from custom_components.ocpp.const import DOMAIN
1010
from custom_components.ocpp.enums import ConfigurationKey
1111
from ocpp.routing import on
12-
from ocpp.v16 import ChargePoint as cp, call, call_result
12+
from ocpp.v16 import ChargePoint as cpclass, call, call_result
1313
from ocpp.v16.enums import (
1414
Action,
1515
AuthorizationStatus,
@@ -59,7 +59,7 @@ async def test_cms_responses(hass):
5959
#)
6060
task.cancel()
6161

62-
class ChargePoint(cp):
62+
class ChargePoint(cpclass):
6363
"""Representation of real client Charge Point."""
6464

6565
def __init__(self, id, connection, response_timeout=30):

0 commit comments

Comments
 (0)