Skip to content

Commit e147694

Browse files
committed
force phpunit 9 for now
1 parent 6857e57 commit e147694

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Test/MakerTestEnvironment.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ private function buildFlexSkeleton(): void
260260
}
261261

262262
// fetch a few packages needed for testing
263-
MakerTestProcess::create('composer require phpunit browser-kit symfony/css-selector --prefer-dist --no-progress --no-suggest', $this->flexPath)
263+
MakerTestProcess::create('composer require phpunit/phpunit:"^9.6" phpunit-bridge browser-kit symfony/css-selector --prefer-dist --no-progress --no-suggest', $this->flexPath)
264264
->run();
265265

266266
if ('\\' !== \DIRECTORY_SEPARATOR) {

src/Test/MakerTestRunner.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ public function updateSchema(): void
207207
public function runTests(): void
208208
{
209209
$internalTestProcess = MakerTestProcess::create(
210-
\sprintf('php %s', $this->getPath('bin/phpunit')),
210+
\sprintf('php %s', $this->getPath('vendor/bin/phpunit')),
211211
$this->environment->getPath())
212212
->run(true)
213213
;

0 commit comments

Comments
 (0)