From 741072a126432cec303ad44a8fb4dd98b8407def Mon Sep 17 00:00:00 2001 From: Ashish Jain Date: Wed, 18 Sep 2024 15:11:08 +0200 Subject: [PATCH] Fix new shapes tests with new syntax --- cypress/integration/rendering/newShapes.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/integration/rendering/newShapes.spec.ts b/cypress/integration/rendering/newShapes.spec.ts index 0f539f09c..67d862ea4 100644 --- a/cypress/integration/rendering/newShapes.spec.ts +++ b/cypress/integration/rendering/newShapes.spec.ts @@ -60,7 +60,7 @@ looks.forEach((look) => { it(`without label`, () => { let flowchartCode = `flowchart ${direction}\n`; newShapesSet.forEach((newShape, index) => { - flowchartCode += ` n${index} --> n${index}${index}{ shape: ${newShape} }\n`; + flowchartCode += ` n${index} --> n${index}${index}@{ shape: ${newShape} }\n`; }); imgSnapshotTest(flowchartCode, { look }); });