diff options
Diffstat (limited to '_pytest/test_processreply.py')
-rw-r--r-- | _pytest/test_processreply.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_pytest/test_processreply.py b/_pytest/test_processreply.py index 59ff560..994b43f 100644 --- a/_pytest/test_processreply.py +++ b/_pytest/test_processreply.py @@ -7,7 +7,7 @@ def test_process_reply(realish_eventrouter, team, channel_general): message_ts = SlackTS('12341234.123456') message_text = 'reply test' channel_general.send_message(message_text) - team.ws.add({'reply_to': 1, '_team': team.team_hash, 'ts': str(message_ts)}) + team.ws.add({'ok': True, 'reply_to': 1, '_team': team.team_hash, 'ts': str(message_ts)}) realish_eventrouter.receive_ws_callback(team.team_hash, None) realish_eventrouter.handle_next() |