We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69fa042 commit 226ab36Copy full SHA for 226ab36
test/ExerciseRunner/CliRunnerTest.php
@@ -224,9 +224,12 @@ public function testRunPassesOutputAndReturnsFailureIfScriptFails()
224
225
public function testsArgsAppendedByEventsArePassedToResults()
226
{
227
- $this->eventDispatcher->listen(['cli.verify.student-execute.pre', 'cli.verify.reference-execute.pre'], function (CliExecuteEvent $e) {
228
- $e->appendArg('4');
229
- });
+ $this->eventDispatcher->listen(
+ ['cli.verify.student-execute.pre', 'cli.verify.reference-execute.pre'],
+ function (CliExecuteEvent $e) {
230
+ $e->appendArg('4');
231
+ }
232
+ );
233
234
$solution = SingleFileSolution::fromFile(realpath(__DIR__ . '/../res/cli/solution.php'));
235
$this->exercise
0 commit comments