Skip to content

Commit

Permalink
fix test_hangouts_extract_functions
Browse files Browse the repository at this point in the history
  • Loading branch information
wochinge committed Nov 5, 2021
1 parent c45dd28 commit 57162ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/core/channels/test_hangouts.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def test_hangouts_channel():
s = rasa.core.run.configure_app([input_channel], port=5004)

routes_list = utils.list_routes(s)
print(routes_list)

assert routes_list.get("hangouts_webhook.health").startswith("/webhooks/hangouts")
assert routes_list.get("hangouts_webhook.receive").startswith(
"/webhooks/hangouts/webhook"
Expand Down Expand Up @@ -134,7 +134,7 @@ def test_hangouts_extract_functions():
def create_req(app):
return Request(
b"http://127.0.0.1:42101/webhooks/hangouts/webhook",
None,
[],
None,
"POST",
None,
Expand Down

0 comments on commit 57162ae

Please sign in to comment.