Skip to content

Commit 0fe8917

Browse files
author
Jaakko Heusala
committed
Fixed format issues
1 parent a478928 commit 0fe8917

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/spec/operationId-starting-with-number/basic.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ describe("operationId starting with number", async () => {
3535
expect(content).toContain('"123GetUser"');
3636
expect(content).toContain('"456CreatePost"');
3737
// Should not contain unquoted invalid identifiers
38-
expect(content).not.toContain('123GetUser:');
39-
expect(content).not.toContain('456CreatePost:');
38+
expect(content).not.toContain("123GetUser:");
39+
expect(content).not.toContain("456CreatePost:");
4040
// Should be valid TypeScript (no syntax errors)
4141
expect(content).toMatchSnapshot();
4242
});
43-
});
43+
});

tests/spec/operationId-starting-with-number/schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,4 @@
7575
}
7676
}
7777
}
78-
}
78+
}

0 commit comments

Comments
 (0)