summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <git@the-compiler.org>2015-12-21 10:02:43 +0100
committerFlorian Bruhin <git@the-compiler.org>2015-12-21 10:02:43 +0100
commit81e1c72588bc7f7edaaa6691f02384078999852e (patch)
treeedfe563592be7ec6e89ec7d1a3f1cdd620531294
parent168f65b1a4e8453b01d3418224f8b4bcc4c3d071 (diff)
downloadqutebrowser-81e1c72588bc7f7edaaa6691f02384078999852e.tar.gz
qutebrowser-81e1c72588bc7f7edaaa6691f02384078999852e.zip
pylint: unneeded-suppression -> useless-suppression
-rw-r--r--tests/unit/commands/test_userscripts.py2
1 files changed, 1 insertions, 1 deletions
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():