Skip to content

Commit ee99f15

Browse files
committed
chore(run-store): satisfy oxfmt on the new atomicity test
1 parent c2e29ab commit ee99f15

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

internal-packages/run-store/src/PostgresRunStore.writeAtomicity.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -699,7 +699,9 @@ describe("createExecutionSnapshot / lockRunToWorker write the snapshot and its l
699699
)
700700
).rejects.toThrow();
701701

702-
const snap = await prisma17.taskRunExecutionSnapshot.findUnique({ where: { id: snapshotId } });
702+
const snap = await prisma17.taskRunExecutionSnapshot.findUnique({
703+
where: { id: snapshotId },
704+
});
703705
expect(snap).toBeNull();
704706
// The whole lock write must roll back, not just the status: no lock columns may leak through.
705707
const run = await prisma17.taskRun.findUniqueOrThrow({ where: { id: runId } });

0 commit comments

Comments
 (0)