diff options
author | Paul "LeoNerd" Evans <paul@matrix.org> | 2014-09-29 18:37:28 +0100 |
---|---|---|
committer | Paul "LeoNerd" Evans <paul@matrix.org> | 2014-09-29 18:37:28 +0100 |
commit | dca75a08ba5e64554f22813bd0a0356760a1be25 (patch) | |
tree | cb28d1e16cc825d4b88bc814e9e6ea1b34783f15 /tests/storage | |
parent | Extended docs about the registration/login flows (diff) | |
parent | Add a 'Redactions' section. (diff) | |
download | synapse-dca75a08ba5e64554f22813bd0a0356760a1be25.tar.xz |
Merge remote-tracking branch 'origin/develop' into develop
Diffstat (limited to 'tests/storage')
-rw-r--r-- | tests/storage/test_registration.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/storage/test_registration.py b/tests/storage/test_registration.py index 91e221d53e..84bfde7568 100644 --- a/tests/storage/test_registration.py +++ b/tests/storage/test_registration.py @@ -53,7 +53,7 @@ class RegistrationStoreTestCase(unittest.TestCase): ) self.assertEquals( - self.user_id, + {"admin": 0, "device_id": None, "name": self.user_id}, (yield self.store.get_user_by_token(self.tokens[0])) ) @@ -63,7 +63,7 @@ class RegistrationStoreTestCase(unittest.TestCase): yield self.store.add_access_token_to_user(self.user_id, self.tokens[1]) self.assertEquals( - self.user_id, + {"admin": 0, "device_id": None, "name": self.user_id}, (yield self.store.get_user_by_token(self.tokens[1])) ) |