Skip to content

Commit f999727

Browse files
committed
Format
1 parent 8496ece commit f999727

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

libs/@hashintel/petrinaut/src/core/build-simulation.test.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,7 @@ describe("buildSimulation", () => {
9595
name: "Transition 1",
9696
inputArcs: [{ placeId: "p1", weight: 1 }],
9797
outputArcs: [{ placeId: "p2", weight: 1 }],
98-
lambdaCode:
99-
"export default Lambda((tokens) => { return 1.0; });",
98+
lambdaCode: "export default Lambda((tokens) => { return 1.0; });",
10099
transitionKernelCode:
101100
"export default TransitionKernel((tokens) => { return [[[1.0, 2.0]]]; });",
102101
},
@@ -105,8 +104,7 @@ describe("buildSimulation", () => {
105104
name: "Transition 2",
106105
inputArcs: [{ placeId: "p2", weight: 1 }],
107106
outputArcs: [{ placeId: "p3", weight: 1 }],
108-
lambdaCode:
109-
"export default Lambda((tokens) => { return 2.0; });",
107+
lambdaCode: "export default Lambda((tokens) => { return 2.0; });",
110108
transitionKernelCode:
111109
"export default TransitionKernel((tokens) => { return [[[5.0]]]; });",
112110
},

0 commit comments

Comments
 (0)