Skip to content

Commit de1684d

Browse files
committed
Fix prettier formatting in python-codegen.test.ts
The CI prettier check failed on test/python-codegen.test.ts after the assertion update. Apply prettier --write to bring the file back into compliance. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 8e422ba commit de1684d

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

nodejs/test/python-codegen.test.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,7 @@ describe("python session event codegen", () => {
7373
expect(code).toContain(
7474
'action = from_union([from_none, lambda x: parse_enum(SessionSyntheticDataAction, x)], obj.get("action"))'
7575
);
76-
expect(code).toContain(
77-
'summary = from_union([from_none, from_str], obj.get("summary"))'
78-
);
76+
expect(code).toContain('summary = from_union([from_none, from_str], obj.get("summary"))');
7977
expect(code).not.toContain('obj.get("action", "store")');
8078
expect(code).not.toContain('obj.get("summary", "")');
8179
expect(code).toContain("uri: str");

0 commit comments

Comments
 (0)