diff --git a/tests/unit/commands/test_userscripts.py b/tests/unit/commands/test_userscripts.py index fdda6992b..079d727a9 100644 --- a/tests/unit/commands/test_userscripts.py +++ b/tests/unit/commands/test_userscripts.py @@ -41,7 +41,7 @@ class TestQtFIFOReader: @pytest.yield_fixture def reader(self, tmpdir, qapp): fifo_path = str(tmpdir / 'fifo') - os.mkfifo(fifo_path) # pylint: disable=no-member,unneeded-suppression + os.mkfifo(fifo_path) # pylint: disable=no-member,useless-suppression reader = userscripts._QtFIFOReader(fifo_path) yield reader if reader._notifier.isEnabled():