Skip to content

Commit 9cfdceb

Browse files
committed
Use stable URL for auth metadata
1 parent 7934a84 commit 9cfdceb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

newsfragments/756.internal.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CI: use stable URL for auth_metadata check

tests/integration/test_syn2mas.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ async def test_run_syn2mas_upgrade(
4747
# Auth metadata endpoint should not be reachable
4848
with pytest.raises(aiohttp.ClientResponseError):
4949
await aiohttp_get_json(
50-
f"https://synapse.{generated_data.server_name}/_matrix/client/unstable/org.matrix.msc2965/auth_metadata",
50+
f"https://synapse.{generated_data.server_name}/_matrix/client/v1/auth_metadata",
5151
{},
5252
ssl_context,
5353
)
@@ -75,7 +75,7 @@ async def test_run_syn2mas_upgrade(
7575

7676
# Auth metadata endpoint should be reachable
7777
response = await aiohttp_get_json(
78-
f"https://synapse.{generated_data.server_name}/_matrix/client/unstable/org.matrix.msc2965/auth_metadata",
78+
f"https://synapse.{generated_data.server_name}/_matrix/client/v1/auth_metadata",
7979
{},
8080
ssl_context,
8181
)

0 commit comments

Comments
 (0)