Skip to content

Commit

Permalink
Fixed a linting rule
Browse files Browse the repository at this point in the history
  • Loading branch information
Luis Fernando Planella Gonzalez committed Aug 25, 2022
1 parent c7cb4c5 commit 1b9729e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/petstore.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ describe('Generation tests using petstore.json', () => {
const type = createPets.parameters[0].type;
// single optional parameters
expect(type).toBeDefined();
expect(type!.replace(/(\r\n|\n|\r| )/gm, "")).toBe('{context?:HttpContext}');
expect(type!.replace(/(\r\n|\n|\r| )/gm, '')).toBe('{context?:HttpContext}');
}

const showPetById = cls.methods.find(m => m.name === 'showPetById');
Expand Down

0 comments on commit 1b9729e

Please sign in to comment.