Skip to content

Commit

Permalink
put the sslInsecure back
Browse files Browse the repository at this point in the history
  • Loading branch information
carlowahlstedt committed Jul 29, 2019
1 parent 3311d2c commit 094380b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions NewmanPostman/newmantask.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ function GetToolRunner(collectionToRun: string) {
newman.argIf(typeof sslClientCert != 'undefined' && tl.filePathSupplied('sslClientCert'), ['--ssl-client-cert', sslClientCert]);
let sslClientKey = tl.getPathInput('sslClientKey', false, true);
newman.argIf(typeof sslClientKey != 'undefined' && tl.filePathSupplied('sslClientKey'), ['--ssl-client-key', sslClientKey]);
let sslStrict = tl.getBoolInput('sslStrict');
newman.argIf(sslStrict, ['--insecure']);
let sslInsecure = tl.getBoolInput('sslInsecure');
newman.argIf(sslInsecure, ['--insecure']);

let unicodeDisabled = tl.getBoolInput('unicodeDisabled');
newman.argIf(unicodeDisabled, ['--disable-unicode']);
Expand Down
2 changes: 1 addition & 1 deletion NewmanPostman/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@
"groupName": "ssl"
},
{
"name": "sslStrict",
"name": "sslInsecure",
"type": "boolean",
"label": "Disable Strict SSL",
"helpMarkDown": "Disables strict ssl",
Expand Down

0 comments on commit 094380b

Please sign in to comment.