diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2021-01-20 12:30:41 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-20 12:30:41 +0000 |
commit | fa50e4bf4ddcb8e98d44700513a28c490f80f02b (patch) | |
tree | 2f2647326c36624c91c5aaf8a350d6fba47a541a /tests/rest | |
parent | Use the account handler in additional places. (#9166) (diff) | |
download | synapse-fa50e4bf4ddcb8e98d44700513a28c490f80f02b.tar.xz |
Give `public_baseurl` a default value (#9159)
Diffstat (limited to 'tests/rest')
-rw-r--r-- | tests/rest/test_well_known.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/rest/test_well_known.py b/tests/rest/test_well_known.py index 14de0921be..c5e44af9f7 100644 --- a/tests/rest/test_well_known.py +++ b/tests/rest/test_well_known.py @@ -40,12 +40,3 @@ class WellKnownTests(unittest.HomeserverTestCase): "m.identity_server": {"base_url": "https://testis"}, }, ) - - def test_well_known_no_public_baseurl(self): - self.hs.config.public_baseurl = None - - channel = self.make_request( - "GET", "/.well-known/matrix/client", shorthand=False - ) - - self.assertEqual(channel.code, 404) |