Skip to content

Commit efcdc0d

Browse files
authored
Merge pull request #30 from Helene/v6.1.3
fix flake8 findings
2 parents 1a80a04 + 42f2b7c commit efcdc0d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/test_cli_parser.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,16 +68,17 @@ def test_case07():
6868
assert 'port' in result.keys()
6969
assert result.get('port') == 8443
7070

71+
7172
def test_case08():
7273
args, msg = parse_cmd_args([])
7374
result = vars(args)
7475
assert 'includeDiskData' in result.keys()
75-
assert result.get('includeDiskData') == None
76+
assert result.get('includeDiskData') is None
77+
7678

7779
@with_setup(my_setup)
7880
def test_case09():
7981
args, msg = parse_cmd_args(h)
8082
result = vars(args)
8183
assert 'includeDiskData' in result.keys()
8284
assert result.get('includeDiskData') == 'no'
83-

0 commit comments

Comments
 (0)