Skip to content

Commit bafb8e5

Browse files
committed
be keen to newcomers
1 parent 4b25bea commit bafb8e5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Tests/Validator/StateMachineValidatorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public function testValid()
9494

9595
(new StateMachineValidator())->validate($definition, 'foo');
9696

97-
// the test simply ensures that the validation does not fail (i.e. it does not throw any exceptions)
97+
// the test ensures that the validation does not fail (i.e. it does not throw any exceptions)
9898
$this->addToAssertionCount(1);
9999

100100
// The graph looks like:

Tests/Validator/WorkflowValidatorTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public function testSinglePlaceWorkflowValidatorAndSimpleWorkflow()
2929

3030
(new WorkflowValidator(true))->validate($definition, 'foo');
3131

32-
// the test simply ensures that the validation does not fail (i.e. it does not throw any exceptions)
32+
// the test ensures that the validation does not fail (i.e. it does not throw any exceptions)
3333
$this->addToAssertionCount(1);
3434
}
3535

@@ -64,7 +64,7 @@ public function testSameTransitionNameButNotSamePlace()
6464

6565
(new WorkflowValidator())->validate($definition, 'foo');
6666

67-
// the test simply ensures that the validation does not fail (i.e. it does not throw any exceptions)
67+
// the test ensures that the validation does not fail (i.e. it does not throw any exceptions)
6868
$this->addToAssertionCount(1);
6969
}
7070
}

0 commit comments

Comments
 (0)