diff options
author | David Baker <dave@matrix.org> | 2016-01-06 16:46:41 +0000 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2016-01-06 16:46:41 +0000 |
commit | 0e48f7f2458f08341131b3b90c78b7034fe02d14 (patch) | |
tree | 0e52de81fd0882623a3353f939e12b1d06c83780 /tests/storage | |
parent | Delete notifications for redacted events (diff) | |
download | synapse-0e48f7f2458f08341131b3b90c78b7034fe02d14.tar.xz |
fix tests
Diffstat (limited to 'tests/storage')
-rw-r--r-- | tests/storage/test_registration.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/storage/test_registration.py b/tests/storage/test_registration.py index 0cce6c37df..4760131f9c 100644 --- a/tests/storage/test_registration.py +++ b/tests/storage/test_registration.py @@ -45,7 +45,7 @@ class RegistrationStoreTestCase(unittest.TestCase): self.assertEquals( # TODO(paul): Surely this field should be 'user_id', not 'name' # Additionally surely it shouldn't come in a 1-element list - {"name": self.user_id, "password_hash": self.pwhash}, + {"name": self.user_id, "password_hash": self.pwhash, "is_guest": 0}, (yield self.store.get_user_by_id(self.user_id)) ) |