Skip to content

Commit 416b570

Browse files
committed
Remove debug code
1 parent e2960d9 commit 416b570

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

swagger-to-har.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -147,9 +147,6 @@ var getQueryStrings = function (swagger, path, method, values) {
147147
param = resolveRef(swagger, param['$ref'])
148148
}
149149
if (typeof param.in !== 'undefined' && param.in.toLowerCase() === 'query') {
150-
if (param.name === 'start_date') {
151-
console.log(1)
152-
}
153150
let value = 'SOME_' + (param.type || param.schema.type).toUpperCase() + '_VALUE'
154151
if (typeof values[param.name] !== 'undefined') {
155152
value = values[param.name] + '' /* adding a empty string to convert to string */

0 commit comments

Comments
 (0)