diff options
author | Kegan Dougal <kegan@matrix.org> | 2014-09-15 15:38:29 +0100 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2014-09-15 15:38:29 +0100 |
commit | 2c00e1ecd9774463d687559d5df38b2a76340b32 (patch) | |
tree | 2da20ea3c6a7b030568244ec8d876f9389b601fb /tests | |
parent | Merge branch 'develop' of github.com:matrix-org/synapse into registration-api... (diff) | |
download | synapse-2c00e1ecd9774463d687559d5df38b2a76340b32.tar.xz |
Be consistent when associating keys with login types for registration/login.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/rest/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/rest/utils.py b/tests/rest/utils.py index 25ed1388cf..579441fb4a 100644 --- a/tests/rest/utils.py +++ b/tests/rest/utils.py @@ -99,7 +99,7 @@ class RestTestCase(unittest.TestCase): "POST", "/register", json.dumps({ - "user_id": user_id, + "user": user_id, "password": "test", "type": "m.login.password" })) |