fix: update createOpenReviewFile test to match new call order (#14881)

This commit is contained in:
Luke Parker 2026-02-24 19:56:41 +10:00 committed by GitHub
parent 744059a00f
commit a592bd9684
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -16,7 +16,7 @@ describe("createOpenReviewFile", () => {
openReviewFile("src/a.ts")
expect(calls).toEqual(["show", "tab:src/a.ts", "open:file://src/a.ts", "load:src/a.ts"])
expect(calls).toEqual(["show", "load:src/a.ts", "tab:src/a.ts", "open:file://src/a.ts"])
})
})