Skip to content

Commit 1a0aa5b

Browse files
committed
Update testcase for stdin
1 parent ef3efb3 commit 1a0aa5b

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tests/test_input.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def test_parse_arguments_default_value(tmpdir):
2020
'real_port': False,
2121
'ignore_http_codes': '404',
2222
'ignore_content_length': 0,
23-
'first_hit': False ,
23+
'first_hit': False,
2424
'unique_depth': 1,
2525
'fuzzy_logic': False,
2626
'no_lookup': False,
@@ -31,7 +31,6 @@ def test_parse_arguments_default_value(tmpdir):
3131
'output_normal': None,
3232
'output_json': None,
3333
'output_grepable' : None,
34-
'stdin': False,
3534
'ssl': False,
3635
}
3736

@@ -60,7 +59,6 @@ def test_parse_arguments_custom_arguments(tmpdir):
6059
'--user-agent', 'some-user-agent',
6160
'--waf',
6261
'-oN', '/tmp/on',
63-
'-',
6462
]
6563

6664
arguments = cli_argument_parser().parse(argv)
@@ -85,7 +83,6 @@ def test_parse_arguments_custom_arguments(tmpdir):
8583
'output_normal': '/tmp/on',
8684
'output_json': None,
8785
'output_grepable' : None,
88-
'stdin': True,
8986
}
9087

9188
assert vars(arguments) == expected_arguments

0 commit comments

Comments
 (0)