Skip to content

Commit 4f9e238

Browse files
committed
Fix various typo
1 parent b121d9f commit 4f9e238

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Tests/Dumper/MermaidDumperTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,10 +141,10 @@ public static function provideWorkflowWithReservedWords(): iterable
141141
{
142142
$builder = new DefinitionBuilder();
143143

144-
$builder->addPlaces(['start', 'subgraph', 'end', 'finis']);
144+
$builder->addPlaces(['start', 'subgraph', 'end', 'finish']);
145145
$builder->addTransitions([
146146
new Transition('t0', ['start', 'subgraph'], ['end']),
147-
new Transition('t1', ['end'], ['finis']),
147+
new Transition('t1', ['end'], ['finish']),
148148
]);
149149

150150
$definition = $builder->build();
@@ -155,7 +155,7 @@ public static function provideWorkflowWithReservedWords(): iterable
155155
."place0([\"start\"])\n"
156156
."place1((\"subgraph\"))\n"
157157
."place2((\"end\"))\n"
158-
."place3((\"finis\"))\n"
158+
."place3((\"finish\"))\n"
159159
."transition0[\"t0\"]\n"
160160
."place0-->transition0\n"
161161
."transition0-->place2\n"

0 commit comments

Comments
 (0)