Skip to content

Commit b189dfe

Browse files
committed
formatting
1 parent d99ab8b commit b189dfe

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

tests/conftest.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def test_charger_auth(mock_aioclient):
3333
status=200,
3434
body=load_fixture("v4_json/status.json"),
3535
repeat=True,
36-
)
36+
)
3737
return main.OpenEVSE(TEST_TLD, user="testuser", pwd="fakepassword")
3838

3939

@@ -69,7 +69,7 @@ def test_charger(mock_aioclient):
6969
status=200,
7070
body=load_fixture("v4_json/status.json"),
7171
repeat=True,
72-
)
72+
)
7373
return main.OpenEVSE(TEST_TLD)
7474

7575

@@ -91,7 +91,7 @@ def test_charger_dev(mock_aioclient):
9191
status=200,
9292
body=load_fixture("v4_json/status.json"),
9393
repeat=True,
94-
)
94+
)
9595
return main.OpenEVSE(TEST_TLD)
9696

9797

@@ -113,7 +113,7 @@ def test_charger_new(mock_aioclient):
113113
status=200,
114114
body=load_fixture("v4_json/status-new.json"),
115115
repeat=True,
116-
)
116+
)
117117
return main.OpenEVSE(TEST_TLD)
118118

119119

tests/test_main.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ async def test_ws_state(test_charger):
5353
value = test_charger.ws_state
5454
assert value == None
5555

56+
5657
async def test_update_status(test_charger):
5758
"""Test v4 Status reply."""
5859
data = json.loads(load_fixture("v4_json/status.json"))

0 commit comments

Comments
 (0)