diff options
Diffstat (limited to 'testenv/tests/apps/cleanup/test_main.py')
-rw-r--r-- | testenv/tests/apps/cleanup/test_main.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testenv/tests/apps/cleanup/test_main.py b/testenv/tests/apps/cleanup/test_main.py index 8458d03f..c1c829f0 100644 --- a/testenv/tests/apps/cleanup/test_main.py +++ b/testenv/tests/apps/cleanup/test_main.py @@ -37,9 +37,9 @@ def test_ok(tmpdir) -> None: # type: ignore queue: "multiprocessing.Queue[Literal[True]]" = multiprocessing.Queue() ustreamer_sock_path = os.path.abspath(str(tmpdir.join("ustreamer-fake.sock"))) - open(ustreamer_sock_path, "w").close() + open(ustreamer_sock_path, "w").close() # pylint: disable=consider-using-with kvmd_sock_path = os.path.abspath(str(tmpdir.join("kvmd-fake.sock"))) - open(kvmd_sock_path, "w").close() + open(kvmd_sock_path, "w").close() # pylint: disable=consider-using-with def ustreamer_fake() -> None: setproctitle.setproctitle("kvmd/streamer: /usr/bin/ustreamer") |