Skip to content

Commit 1b9729e

Browse files
author
Luis Fernando Planella Gonzalez
committed
Fixed a linting rule
1 parent c7cb4c5 commit 1b9729e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/petstore.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ describe('Generation tests using petstore.json', () => {
3939
const type = createPets.parameters[0].type;
4040
// single optional parameters
4141
expect(type).toBeDefined();
42-
expect(type!.replace(/(\r\n|\n|\r| )/gm, "")).toBe('{context?:HttpContext}');
42+
expect(type!.replace(/(\r\n|\n|\r| )/gm, '')).toBe('{context?:HttpContext}');
4343
}
4444

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

0 commit comments

Comments
 (0)