File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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+
5657async def test_update_status (test_charger ):
5758 """Test v4 Status reply."""
5859 data = json .loads (load_fixture ("v4_json/status.json" ))
You can’t perform that action at this time.
0 commit comments