Remove unneeded variable

This commit is contained in:
Florian Bruhin 2017-10-17 11:37:19 +02:00
parent c3441ae4a8
commit 52423fa426

View File

@ -89,7 +89,7 @@ class TestCompletions:
parser = runners.CommandParser(partial_match=True) parser = runners.CommandParser(partial_match=True)
with pytest.raises(cmdexc.NoSuchCommandError): with pytest.raises(cmdexc.NoSuchCommandError):
result = parser.parse('do') parser.parse('do')
def test_use_best_match(self, config_stub): def test_use_best_match(self, config_stub):
"""Test multiple completion options with use_best_match set to true. """Test multiple completion options with use_best_match set to true.