diff options
author | Azrenbeth <77782548+Azrenbeth@users.noreply.github.com> | 2021-09-06 16:08:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-06 16:08:03 +0100 |
commit | 6e895366ea7f194cd48fae08a9909ee01a9fadae (patch) | |
tree | 9b7bca86be646d3cc6ee35f16504687e47d48614 /tests | |
parent | Stop using BaseHandler in `FederationEventHandler` (#10745) (diff) | |
download | synapse-6e895366ea7f194cd48fae08a9909ee01a9fadae.tar.xz |
Add config option to use non-default manhole password and keys (#10643)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/config/test_server.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/config/test_server.py b/tests/config/test_server.py index 6f2b9e997d..b6f21294ba 100644 --- a/tests/config/test_server.py +++ b/tests/config/test_server.py @@ -35,7 +35,7 @@ class ServerConfigTestCase(unittest.TestCase): def test_unsecure_listener_no_listeners_open_private_ports_false(self): conf = yaml.safe_load( ServerConfig().generate_config_section( - "che.org", "/data_dir_path", False, None + "che.org", "/data_dir_path", False, None, config_dir_path="CONFDIR" ) ) @@ -55,7 +55,7 @@ class ServerConfigTestCase(unittest.TestCase): def test_unsecure_listener_no_listeners_open_private_ports_true(self): conf = yaml.safe_load( ServerConfig().generate_config_section( - "che.org", "/data_dir_path", True, None + "che.org", "/data_dir_path", True, None, config_dir_path="CONFDIR" ) ) @@ -89,7 +89,7 @@ class ServerConfigTestCase(unittest.TestCase): conf = yaml.safe_load( ServerConfig().generate_config_section( - "this.one.listens", "/data_dir_path", True, listeners + "this.one.listens", "/data_dir_path", True, listeners, "CONFDIR" ) ) @@ -123,7 +123,7 @@ class ServerConfigTestCase(unittest.TestCase): conf = yaml.safe_load( ServerConfig().generate_config_section( - "this.one.listens", "/data_dir_path", True, listeners + "this.one.listens", "/data_dir_path", True, listeners, "CONFDIR" ) ) |