Skip to content

Commit 1eae2ac

Browse files
authored
Merge pull request #673 from powerapi-ng/refactor/test-cli-unused-unpack
test(unit/cli): Prefix unused unpack value with underscore
2 parents 79988e8 + 193371e commit 1eae2ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/cli/test_config_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -805,7 +805,7 @@ def test_subgroup_parser_parsing_empty_argument_list_return_an_empty_dict():
805805
subparser = SubgroupConfigParser('toto')
806806
subparser.add_argument('a', default_value=1)
807807
subparser.add_argument('x', default_value=False)
808-
acc, result = subparser.parse([])
808+
_acc, result = subparser.parse([])
809809
assert len(result) == 0
810810

811811

0 commit comments

Comments
 (0)