diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-11-16 14:45:52 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-16 14:45:52 +0000 |
commit | 791d7cd6f065e166576538b9cba3d90febf83ea4 (patch) | |
tree | dad2b07da4d176b6aea8f329e5ca4eec0e01c22c /tests/rest/test_well_known.py | |
parent | Add a `custom_headers` param to `make_request` (#8760) (diff) | |
download | synapse-791d7cd6f065e166576538b9cba3d90febf83ea4.tar.xz |
Rename `create_test_json_resource` to `create_test_resource` (#8759)
The root resource isn't necessarily a JsonResource, so rename this method accordingly, and update a couple of test classes to use the method rather than directly manipulating self.resource.
Diffstat (limited to 'tests/rest/test_well_known.py')
-rw-r--r-- | tests/rest/test_well_known.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/rest/test_well_known.py b/tests/rest/test_well_known.py index dcd65c2a50..a3746e7130 100644 --- a/tests/rest/test_well_known.py +++ b/tests/rest/test_well_known.py @@ -20,11 +20,9 @@ from tests import unittest class WellKnownTests(unittest.HomeserverTestCase): - def setUp(self): - super().setUp() - + def create_test_resource(self): # replace the JsonResource with a WellKnownResource - self.resource = WellKnownResource(self.hs) + return WellKnownResource(self.hs) def test_well_known(self): self.hs.config.public_baseurl = "https://tesths" |