diff options
Diffstat (limited to '_pytest/test_processsubteamcreated.py')
-rw-r--r-- | _pytest/test_processsubteamcreated.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/_pytest/test_processsubteamcreated.py b/_pytest/test_processsubteamcreated.py index 299ac6f..9ff3ee2 100644 --- a/_pytest/test_processsubteamcreated.py +++ b/_pytest/test_processsubteamcreated.py @@ -6,8 +6,8 @@ import json def test_process_subteam_created(realish_eventrouter, team): assert len(team.subteams) == 1 - datafile = '_pytest/data/websocket/1483975206.59-subteam_created.json' - data = json.loads(open(datafile, 'r').read()) + datafile = "_pytest/data/websocket/1483975206.59-subteam_created.json" + data = json.loads(open(datafile, "r").read()) team.ws.add(data) realish_eventrouter.receive_ws_callback(team.team_hash, None) realish_eventrouter.handle_next() |