Skip to content

Commit 3630d74

Browse files
author
Pontus Lundin
committed
fix fmt issue in test file
1 parent 004fd40 commit 3630d74

File tree

1 file changed

+5
-1
lines changed
  • packages/openapi-typescript/test/transform/schema-object

1 file changed

+5
-1
lines changed

packages/openapi-typescript/test/transform/schema-object/object.test.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,11 @@ describe("transformSchemaObject > object", () => {
138138
[
139139
"patternProperties > additional and patterns",
140140
{
141-
given: { type: "object", additionalProperties: { type: "number" }, patternProperties: { "^a": { type: "string" } } },
141+
given: {
142+
type: "object",
143+
additionalProperties: { type: "number" },
144+
patternProperties: { "^a": { type: "string" } },
145+
},
142146
want: `{
143147
[key: string]: number | string;
144148
}`,

0 commit comments

Comments
 (0)