diff options
author | Daniel Wagner-Hall <daniel@matrix.org> | 2015-09-01 12:41:16 +0100 |
---|---|---|
committer | Daniel Wagner-Hall <daniel@matrix.org> | 2015-09-01 12:41:16 +0100 |
commit | e255c2c32ff85db03abbf2dac184b2949f481cfb (patch) | |
tree | 43e08f2f16d859c14877f9374f0af2f746ffdd8c /tests/rest/client/v1/test_presence.py | |
parent | Turn TODO into thing which actually will fail (diff) | |
download | synapse-e255c2c32ff85db03abbf2dac184b2949f481cfb.tar.xz |
s/user_id/user/g for consistency
Diffstat (limited to 'tests/rest/client/v1/test_presence.py')
-rw-r--r-- | tests/rest/client/v1/test_presence.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/rest/client/v1/test_presence.py b/tests/rest/client/v1/test_presence.py index d8d1416f59..2ee3da0b34 100644 --- a/tests/rest/client/v1/test_presence.py +++ b/tests/rest/client/v1/test_presence.py @@ -72,7 +72,7 @@ class PresenceStateTestCase(unittest.TestCase): def _get_user_by_access_token(token=None): return { - "user_id": UserID.from_string(myid), + "user": UserID.from_string(myid), "token_id": 1, } @@ -159,7 +159,7 @@ class PresenceListTestCase(unittest.TestCase): def _get_user_by_access_token(token=None): return { - "user_id": UserID.from_string(myid), + "user": UserID.from_string(myid), "token_id": 1, } |