diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-01-28 16:58:23 +0000 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-01-28 16:58:23 +0000 |
commit | 388581e087a3658c1b70d2aa1d17a132953350ca (patch) | |
tree | 66072a2c0728e41603680c7e49467a5754e711a7 /tests/rest/client/v1/test_presence.py | |
parent | Return the device_id from get_auth_by_req (diff) | |
download | synapse-388581e087a3658c1b70d2aa1d17a132953350ca.tar.xz |
Extract the id token of the token when authing users, include the token and device_id in the internal meta data for the event along with the transaction id when sending events
Diffstat (limited to 'tests/rest/client/v1/test_presence.py')
-rw-r--r-- | tests/rest/client/v1/test_presence.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/rest/client/v1/test_presence.py b/tests/rest/client/v1/test_presence.py index a4f2abf213..f849120a3e 100644 --- a/tests/rest/client/v1/test_presence.py +++ b/tests/rest/client/v1/test_presence.py @@ -75,6 +75,7 @@ class PresenceStateTestCase(unittest.TestCase): "user": UserID.from_string(myid), "admin": False, "device_id": None, + "token_id": 1, } hs.get_auth().get_user_by_token = _get_user_by_token @@ -165,6 +166,7 @@ class PresenceListTestCase(unittest.TestCase): "user": UserID.from_string(myid), "admin": False, "device_id": None, + "token_id": 1, } hs.handlers.room_member_handler = Mock( |