Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions newsfragments/756.internal.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CI: use stable URL for auth_metadata check.
4 changes: 2 additions & 2 deletions tests/integration/test_syn2mas.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ async def test_run_syn2mas_upgrade(
# Auth metadata endpoint should not be reachable
with pytest.raises(aiohttp.ClientResponseError):
await aiohttp_get_json(
f"https://synapse.{generated_data.server_name}/_matrix/client/unstable/org.matrix.msc2965/auth_metadata",
f"https://synapse.{generated_data.server_name}/_matrix/client/v1/auth_metadata",
{},
ssl_context,
)
Expand Down Expand Up @@ -75,7 +75,7 @@ async def test_run_syn2mas_upgrade(

# Auth metadata endpoint should be reachable
response = await aiohttp_get_json(
f"https://synapse.{generated_data.server_name}/_matrix/client/unstable/org.matrix.msc2965/auth_metadata",
f"https://synapse.{generated_data.server_name}/_matrix/client/v1/auth_metadata",
{},
ssl_context,
)
Expand Down
Loading