diff options
author | Mark Haines <mjark@negativecurvature.net> | 2016-10-25 17:33:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-25 17:33:15 +0100 |
commit | 177f104432b3ab124bb0ae0b7e0e1c2eeae2f492 (patch) | |
tree | 0118fd2870598a004d7439f67e21c8651f425643 /tests/handlers | |
parent | Merge branch 'release-v0.18.2' of github.com:matrix-org/synapse into develop (diff) | |
parent | Merge branch 'develop' into markjh/bearer_token (diff) | |
download | synapse-177f104432b3ab124bb0ae0b7e0e1c2eeae2f492.tar.xz |
Merge pull request #1098 from matrix-org/markjh/bearer_token
Allow clients to supply access_tokens as headers
Diffstat (limited to 'tests/handlers')
-rw-r--r-- | tests/handlers/test_typing.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/handlers/test_typing.py b/tests/handlers/test_typing.py index c3108f5181..c718d1f98f 100644 --- a/tests/handlers/test_typing.py +++ b/tests/handlers/test_typing.py @@ -219,7 +219,8 @@ class TypingNotificationsTestCase(unittest.TestCase): "user_id": self.u_onion.to_string(), "typing": True, } - ) + ), + federation_auth=True, ) self.on_new_event.assert_has_calls([ |