Skip to content

Commit ccfd248

Browse files
committed
forcing stable ORM in tests
1 parent 6b512b8 commit ccfd248

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Maker/MakeMigrationTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function getTestDetails()
2828
// doctrine-migrations-bundle only requires doctrine-bundle, which
2929
// only requires doctrine/dbal. But we're testing with the ORM,
3030
// so let's install it
31-
->addExtraDependencies('doctrine/orm')
31+
->addExtraDependencies('doctrine/orm:@stable')
3232
->assert(function (string $output, string $directory) {
3333
$this->assertStringContainsString('Success', $output);
3434

@@ -53,7 +53,7 @@ public function getTestDetails()
5353
->setFixtureFilesPath(__DIR__.'/../fixtures/MakeMigration')
5454
->configureDatabase()
5555
// sync the database, so no changes are needed
56-
->addExtraDependencies('doctrine/orm')
56+
->addExtraDependencies('doctrine/orm:@stable')
5757
->assert(function (string $output, string $directory) {
5858
$this->assertNotContains('Success', $output);
5959

0 commit comments

Comments
 (0)