We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 190f15e commit 39e3ba6Copy full SHA for 39e3ba6
test/index.js
@@ -467,7 +467,7 @@ describe('constructor', () => {
467
req.url = 'http://petstore.swagger.io/v2/pet/4'
468
}
469
}).then((client) => {
470
- client.apis.pet.getPetById({'petId-path': 3}).then((data) => {
+ client.apis.pet.getPetById({petId: 3}).then((data) => {
471
expect(data.body.id).toEqual(4)
472
cb()
473
})
@@ -481,7 +481,7 @@ describe('constructor', () => {
481
res.body.id = 4
482
483
484
485
486
487
0 commit comments