Skip to content

Commit f9df943

Browse files
committed
minor #165 Fixed CS (thomasbisignani)
This PR was merged into the 1.0-dev branch. Discussion ---------- Fixed CS Just a CS small fix. Commits ------- 9324b61 Fixed CS
2 parents 45fe88c + 9324b61 commit f9df943

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/Test/MakerTestCase.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,8 @@ protected function executeMakerCommand(MakerTestDetails $testDetails)
2727
$testEnv->prepare();
2828

2929
try {
30+
// run tests
3031
$makerTestProcess = $testEnv->runMaker();
31-
// Run tests
32-
3332
$files = $testEnv->getGeneratedFilesFromOutputText();
3433

3534
foreach ($files as $file) {
@@ -48,13 +47,13 @@ protected function executeMakerCommand(MakerTestDetails $testDetails)
4847
}
4948
}
5049

51-
//run internal tests
50+
// run internal tests
5251
$internalTestProcess = $testEnv->runInternalTests();
5352
if (null !== $internalTestProcess) {
5453
$this->assertTrue($internalTestProcess->isSuccessful(), sprintf("Error while running the PHPUnit tests *in* the project: \n\n %s \n\n Command Output: %s", $internalTestProcess->getOutput(), $makerTestProcess->getOutput()));
5554
}
5655

57-
//checkout user asserts
56+
// checkout user asserts
5857
if (null === $testDetails->getAssert()) {
5958
$this->assertContains('Success', $makerTestProcess->getOutput(), $makerTestProcess->getErrorOutput());
6059
} else {

0 commit comments

Comments
 (0)