diff --git a/NewmanPostman/newmantask.ts b/NewmanPostman/newmantask.ts index 5bb63aa..bd96a15 100644 --- a/NewmanPostman/newmantask.ts +++ b/NewmanPostman/newmantask.ts @@ -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']); diff --git a/NewmanPostman/task.json b/NewmanPostman/task.json index c6d577a..e984fd7 100644 --- a/NewmanPostman/task.json +++ b/NewmanPostman/task.json @@ -238,7 +238,7 @@ "groupName": "ssl" }, { - "name": "sslStrict", + "name": "sslInsecure", "type": "boolean", "label": "Disable Strict SSL", "helpMarkDown": "Disables strict ssl",