File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ def test_parse_arguments_default_value(tmpdir):
20
20
'real_port' : False ,
21
21
'ignore_http_codes' : '404' ,
22
22
'ignore_content_length' : 0 ,
23
- 'first_hit' : False ,
23
+ 'first_hit' : False ,
24
24
'unique_depth' : 1 ,
25
25
'fuzzy_logic' : False ,
26
26
'no_lookup' : False ,
@@ -31,7 +31,6 @@ def test_parse_arguments_default_value(tmpdir):
31
31
'output_normal' : None ,
32
32
'output_json' : None ,
33
33
'output_grepable' : None ,
34
- 'stdin' : False ,
35
34
'ssl' : False ,
36
35
}
37
36
@@ -60,7 +59,6 @@ def test_parse_arguments_custom_arguments(tmpdir):
60
59
'--user-agent' , 'some-user-agent' ,
61
60
'--waf' ,
62
61
'-oN' , '/tmp/on' ,
63
- '-' ,
64
62
]
65
63
66
64
arguments = cli_argument_parser ().parse (argv )
@@ -85,7 +83,6 @@ def test_parse_arguments_custom_arguments(tmpdir):
85
83
'output_normal' : '/tmp/on' ,
86
84
'output_json' : None ,
87
85
'output_grepable' : None ,
88
- 'stdin' : True ,
89
86
}
90
87
91
88
assert vars (arguments ) == expected_arguments
You can’t perform that action at this time.
0 commit comments