diff options
author | Erik Johnston <erik@matrix.org> | 2018-08-23 19:17:08 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2018-08-23 19:17:19 +0100 |
commit | cd77270a669fa827912efd86a0723d85e9e388ed (patch) | |
tree | f0ce984b18edf485afdcaad54bbe52c5aa8c2659 /tests | |
parent | Merge pull request #3747 from matrix-org/erikj/fix_multiple_sends_notice (diff) | |
download | synapse-cd77270a669fa827912efd86a0723d85e9e388ed.tar.xz |
Implement trail users
Diffstat (limited to 'tests')
-rw-r--r-- | tests/storage/test_registration.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/storage/test_registration.py b/tests/storage/test_registration.py index 4eda122edc..3dfb7b903a 100644 --- a/tests/storage/test_registration.py +++ b/tests/storage/test_registration.py @@ -46,6 +46,7 @@ class RegistrationStoreTestCase(unittest.TestCase): "consent_version": None, "consent_server_notice_sent": None, "appservice_id": None, + "creation_ts": 1000, }, (yield self.store.get_user_by_id(self.user_id)), ) |