@@ -53,7 +53,10 @@ describe("ProjectAlert control-plane → run-subgraph FK reconciliation", () =>
5353 "creating a TASK_RUN alert with a ksuid taskRunId (run only on the run-ops DB) succeeds on control-plane" ,
5454 async ( { prisma14, prisma17 } ) => {
5555 const suffix = "alert-ksuid" ;
56- const { project, environment, channel } = await seedControlPlaneAlertPrereqs ( prisma14 , suffix ) ;
56+ const { project, environment, channel } = await seedControlPlaneAlertPrereqs (
57+ prisma14 ,
58+ suffix
59+ ) ;
5760
5861 // The run exists ONLY on the dedicated run-ops DB (prisma17), never on control-plane.
5962 await ( prisma17 as RunOpsPrismaClient ) . taskRun . create ( {
@@ -103,7 +106,10 @@ describe("ProjectAlert control-plane → run-subgraph FK reconciliation", () =>
103106 "creating a TASK_RUN_ATTEMPT alert with a ksuid taskRunAttemptId (attempt only on the run-ops DB) succeeds on control-plane" ,
104107 async ( { prisma14 } ) => {
105108 const suffix = "alert-ksuid-attempt" ;
106- const { project, environment, channel } = await seedControlPlaneAlertPrereqs ( prisma14 , suffix ) ;
109+ const { project, environment, channel } = await seedControlPlaneAlertPrereqs (
110+ prisma14 ,
111+ suffix
112+ ) ;
107113
108114 // A ksuid attempt id with no matching control-plane TaskRunAttempt row. With the FK present
109115 // this throws P2003; after the FK is dropped it succeeds.
0 commit comments