Skip to content

Commit daa10e3

Browse files
committed
Inspection changes
inspection changes
1 parent 1e93086 commit daa10e3

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

codegens/r-rcurl/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
To run Code-Gen, ensure that you have NodeJS >= v8. A copy of the NodeJS installable can be downloaded from https://nodejs.org/en/download/package-manager.
66

77
## Using the Module
8-
The module will expose an object which will have property `convert` which is the function for converting the Postman-SDK request to swift code snippet.
8+
The module will expose an object which will have property `convert` which is the function for converting the Postman-SDK request to R-RCurl code snippet.
99

1010
### convert function
1111
Convert function takes three parameters

codegens/r-rcurl/lib/util/parseBody.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,6 @@ function parseRawBody (body, indentation, bodyTrim, contentType) {
179179
try {
180180
let jsonBody = JSON.parse(body);
181181
bodySnippet += `"${sanitizeString(JSON.stringify(jsonBody, null, indentation.length), bodyTrim)}"`;
182-
// bodySnippet += `'${JSON.stringify(jsonBody, null, indentation.length)}';`;
183182
}
184183
catch (error) {
185184
bodySnippet += `"${sanitizeString(body.toString(), bodyTrim)}"`;

codegens/r-rcurl/npm/test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ var chalk = require('chalk'),
77

88
require('async').series([
99
require('./test-lint'),
10-
require('./test-newman')
10+
require('./test-newman'),
1111
// Add a separate folder for every new suite of tests
12-
// require('./test-unit')
12+
require('./test-unit')
1313
// require('./test-browser')
1414
// require('./test-integration')
1515
], function (code) {

0 commit comments

Comments
 (0)