Skip to content

Commit d331802

Browse files
d-csclaude
andcommitted
style(run-ops): apply oxfmt
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 487cfd7 commit d331802

1 file changed

Lines changed: 12 additions & 9 deletions

File tree

internal-packages/run-engine/src/engine/tests/crossVersionCompat.test.ts

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -414,14 +414,17 @@ const dedicatedUrl = process.env.CROSS_VERSION_DEDICATED_URL;
414414
const describeDedicated = dedicatedUrl ? describe : describe.skip;
415415

416416
describeDedicated("real dedicated-DB cross-version corpus (env-gated)", () => {
417-
heteroPostgresTest("CTE + join/round-trip + keyset vs real dedicated run-ops DB", async ({ prisma14 }) => {
418-
const dedicated = new PrismaClient({ datasources: { db: { url: dedicatedUrl! } } });
419-
try {
420-
await assertBlockWaitpointCteIdentical(prisma14, dedicated);
421-
await assertCompletedWaitpointsRoundtripIdentical(prisma14, dedicated);
422-
await assertKeysetOrderIdentical(prisma14, dedicated);
423-
} finally {
424-
await dedicated.$disconnect();
417+
heteroPostgresTest(
418+
"CTE + join/round-trip + keyset vs real dedicated run-ops DB",
419+
async ({ prisma14 }) => {
420+
const dedicated = new PrismaClient({ datasources: { db: { url: dedicatedUrl! } } });
421+
try {
422+
await assertBlockWaitpointCteIdentical(prisma14, dedicated);
423+
await assertCompletedWaitpointsRoundtripIdentical(prisma14, dedicated);
424+
await assertKeysetOrderIdentical(prisma14, dedicated);
425+
} finally {
426+
await dedicated.$disconnect();
427+
}
425428
}
426-
});
429+
);
427430
});

0 commit comments

Comments
 (0)