From 52423fa426753898e71ce9f4ba144fafee101df5 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 17 Oct 2017 11:37:19 +0200 Subject: [PATCH] Remove unneeded variable --- tests/unit/commands/test_runners.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/commands/test_runners.py b/tests/unit/commands/test_runners.py index fad96c558..18db9f01c 100644 --- a/tests/unit/commands/test_runners.py +++ b/tests/unit/commands/test_runners.py @@ -89,7 +89,7 @@ class TestCompletions: parser = runners.CommandParser(partial_match=True) with pytest.raises(cmdexc.NoSuchCommandError): - result = parser.parse('do') + parser.parse('do') def test_use_best_match(self, config_stub): """Test multiple completion options with use_best_match set to true.