Skip to content

Commit

Permalink
fixed quotes, causing test failue
Browse files Browse the repository at this point in the history
  • Loading branch information
fehguy committed Jan 6, 2015
1 parent 396c38e commit c84fe36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/swagger.js
Original file line number Diff line number Diff line change
Expand Up @@ -1091,7 +1091,7 @@

var key;
for (key in headers) {
results.push('--header \'' + key + ': ' + headers[key] + '\'');
results.push('--header "' + key + ': ' + headers[key] + '"');
}
return 'curl ' + (results.join(' ')) + ' ' + this.urlify(args);
};
Expand Down

0 comments on commit c84fe36

Please sign in to comment.