diff options
author | Travis Ralston <travisr@matrix.org> | 2021-06-03 06:50:49 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-03 13:50:49 +0100 |
commit | 5325f0308c5937d2e4447d2c64c8819b3c148d9c (patch) | |
tree | 57106de9f98414fbd9bc520aebcd72e384ecbdf4 /tests | |
parent | Merge branch 'master' into develop (diff) | |
download | synapse-5325f0308c5937d2e4447d2c64c8819b3c148d9c.tar.xz |
r0.6.1 support: /rooms/:roomId/aliases endpoint (#9224)
[MSC2432](https://github.com/matrix-org/matrix-doc/pull/2432) added this endpoint originally but it has since been included in the spec for nearly a year. This is progress towards https://github.com/matrix-org/synapse/issues/8334
Diffstat (limited to 'tests')
-rw-r--r-- | tests/rest/client/v1/test_rooms.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/rest/client/v1/test_rooms.py b/tests/rest/client/v1/test_rooms.py index 7c4bdcdfdd..5b1096d091 100644 --- a/tests/rest/client/v1/test_rooms.py +++ b/tests/rest/client/v1/test_rooms.py @@ -1880,8 +1880,7 @@ class RoomAliasListTestCase(unittest.HomeserverTestCase): """Calls the endpoint under test. returns the json response object.""" channel = self.make_request( "GET", - "/_matrix/client/unstable/org.matrix.msc2432/rooms/%s/aliases" - % (self.room_id,), + "/_matrix/client/r0/rooms/%s/aliases" % (self.room_id,), access_token=access_token, ) self.assertEqual(channel.code, expected_code, channel.result) |