diff options
author | reivilibre <oliverw@matrix.org> | 2021-12-07 10:49:39 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-07 10:49:39 +0000 |
commit | 2d42e586a8c54be1a83643148358b1651c1ca666 (patch) | |
tree | 4107bfcdf9bd63390b8d3c9ca8b303e99b2de69c /tests/rest | |
parent | Stabilise support for MSC2918 refresh tokens as they have now been merged int... (diff) | |
download | synapse-2d42e586a8c54be1a83643148358b1651c1ca666.tar.xz |
Fix the test breakage introduced by #11435 as a result of concurrent PRs (#11522)
Diffstat (limited to 'tests/rest')
-rw-r--r-- | tests/rest/client/test_auth.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/rest/client/test_auth.py b/tests/rest/client/test_auth.py index aa8ad6d2e1..72bbc87b4a 100644 --- a/tests/rest/client/test_auth.py +++ b/tests/rest/client/test_auth.py @@ -703,7 +703,7 @@ class RefreshAuthTests(unittest.HomeserverTestCase): login_response1 = self.make_request( "POST", "/_matrix/client/r0/login", - {"org.matrix.msc2918.refresh_token": True, **body}, + {"refresh_token": True, **body}, ) self.assertEqual(login_response1.code, 200, login_response1.result) self.assertApproximates( |