diff options
author | David Robertson <davidr@element.io> | 2023-02-03 19:22:40 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-03 19:22:40 +0000 |
commit | e301ee6189f9b24ecf4ff5a2eb83529d3d32dc98 (patch) | |
tree | f48557c628ffbd96404c435b64d4cc6d7ad967bf /tests/app/test_homeserver_start.py | |
parent | Add a docstring & tests for _flatten_dict. (#14981) (diff) | |
download | synapse-e301ee6189f9b24ecf4ff5a2eb83529d3d32dc98.tar.xz |
Properly typecheck tests.app (#14984
Diffstat (limited to 'tests/app/test_homeserver_start.py')
-rw-r--r-- | tests/app/test_homeserver_start.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/app/test_homeserver_start.py b/tests/app/test_homeserver_start.py index cbcada0451..788c935537 100644 --- a/tests/app/test_homeserver_start.py +++ b/tests/app/test_homeserver_start.py @@ -19,7 +19,7 @@ from tests.config.utils import ConfigFileTestCase class HomeserverAppStartTestCase(ConfigFileTestCase): - def test_wrong_start_caught(self): + def test_wrong_start_caught(self) -> None: # Generate a config with a worker_app self.generate_config() # Add a blank line as otherwise the next addition ends up on a line with a comment |