diff options
author | Erik Johnston <erik@matrix.org> | 2014-08-18 16:00:46 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-08-18 16:00:46 +0100 |
commit | 709a92cee89709811c51cac7d8c66922093be673 (patch) | |
tree | 1d1d1ca90bceaf2c7749a90f6ff4b54efbaf97cc /tests/rest/test_profile.py | |
parent | Merge branch 'master' of github.com:matrix-org/synapse into sql_refactor (diff) | |
download | synapse-709a92cee89709811c51cac7d8c66922093be673.tar.xz |
SQL doesn't allow AUTOINCREMENT on non PRIMARY KEY columns.
Diffstat (limited to 'tests/rest/test_profile.py')
-rw-r--r-- | tests/rest/test_profile.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/rest/test_profile.py b/tests/rest/test_profile.py index ff1e92805e..ee47daf4c2 100644 --- a/tests/rest/test_profile.py +++ b/tests/rest/test_profile.py @@ -46,6 +46,7 @@ class ProfileTestCase(unittest.TestCase): resource_for_client=self.mock_server, federation=Mock(), replication_layer=Mock(), + datastore=None, ) def _get_user_by_token(token=None): |