Skip to content
Snippets Groups Projects
Unverified Commit 2d42e586 authored by reivilibre's avatar reivilibre Committed by GitHub
Browse files

Fix the test breakage introduced by #11435 as a result of concurrent PRs (#11522)

parent 2f053f3f
No related branches found
No related tags found
No related merge requests found
Stabilise support for [MSC2918](https://github.com/matrix-org/matrix-doc/blob/main/proposals/2918-refreshtokens.md#msc2918-refresh-tokens) refresh tokens as they have now been merged into the Matrix specification.
\ No newline at end of file
...@@ -703,7 +703,7 @@ class RefreshAuthTests(unittest.HomeserverTestCase): ...@@ -703,7 +703,7 @@ class RefreshAuthTests(unittest.HomeserverTestCase):
login_response1 = self.make_request( login_response1 = self.make_request(
"POST", "POST",
"/_matrix/client/r0/login", "/_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.assertEqual(login_response1.code, 200, login_response1.result)
self.assertApproximates( self.assertApproximates(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment