File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -21,8 +21,8 @@ function GetToolRunner(collectionToRun: string) {
2121 newman . argIf ( typeof sslClientCert != 'undefined' && tl . filePathSupplied ( 'sslClientCert' ) , [ '--ssl-client-cert' , sslClientCert ] ) ;
2222 let sslClientKey = tl . getPathInput ( 'sslClientKey' , false , true ) ;
2323 newman . argIf ( typeof sslClientKey != 'undefined' && tl . filePathSupplied ( 'sslClientKey' ) , [ '--ssl-client-key' , sslClientKey ] ) ;
24- let sslStrict = tl . getBoolInput ( 'sslStrict ' ) ;
25- newman . argIf ( sslStrict , [ '--insecure' ] ) ;
24+ let sslInsecure = tl . getBoolInput ( 'sslInsecure ' ) ;
25+ newman . argIf ( sslInsecure , [ '--insecure' ] ) ;
2626
2727 let unicodeDisabled = tl . getBoolInput ( 'unicodeDisabled' ) ;
2828 newman . argIf ( unicodeDisabled , [ '--disable-unicode' ] ) ;
Original file line number Diff line number Diff line change 238238 "groupName" : " ssl"
239239 },
240240 {
241- "name" : " sslStrict " ,
241+ "name" : " sslInsecure " ,
242242 "type" : " boolean" ,
243243 "label" : " Disable Strict SSL" ,
244244 "helpMarkDown" : " Disables strict ssl" ,
You can’t perform that action at this time.
0 commit comments