diff --git a/core/phpstan-baseline.neon b/core/phpstan-baseline.neon index dd4da94b3789bd30ff9a0ebeef5fd19537fb2cc2..d3f60bb4947d7861f8e2698af72349de10c5d87e 100644 --- a/core/phpstan-baseline.neon +++ b/core/phpstan-baseline.neon @@ -3345,11 +3345,6 @@ parameters: count: 1 path: tests/Drupal/Tests/Core/Entity/EntityUrlTest.php - - - message: "#^Call to deprecated method withConsecutive\\(\\) of class PHPUnit\\\\Framework\\\\MockObject\\\\Builder\\\\InvocationMocker\\.$#" - count: 1 - path: tests/Drupal/Tests/Core/Entity/Sql/SqlContentEntityStorageSchemaTest.php - - message: """ #^Call to deprecated method expectError\\(\\) of class PHPUnit\\\\Framework\\\\TestCase\\: diff --git a/core/tests/Drupal/Tests/Core/Entity/Sql/SqlContentEntityStorageSchemaTest.php b/core/tests/Drupal/Tests/Core/Entity/Sql/SqlContentEntityStorageSchemaTest.php index 52882bf1599d8a055ae34ffb28acd1ec59c9ea44..3cc96f3ce8b0d50e3dbe982d471899f67202ecf1 100644 --- a/core/tests/Drupal/Tests/Core/Entity/Sql/SqlContentEntityStorageSchemaTest.php +++ b/core/tests/Drupal/Tests/Core/Entity/Sql/SqlContentEntityStorageSchemaTest.php @@ -1536,12 +1536,12 @@ public function testonEntityTypeUpdateWithNewIndex() { ]); // The original indexes should be dropped before the new one is added. - $this->dbSchemaHandler->expects($this->exactly(3)) + $indexes = ['entity_test__b588603cb9', 'entity_test__removed_field', 'entity_test__b588603cb9']; + $this->dbSchemaHandler->expects($this->exactly(count($indexes))) ->method('dropIndex') - ->withConsecutive( - ['entity_test', 'entity_test__b588603cb9'], - ['entity_test', 'entity_test__removed_field'], - ); + ->with('entity_test', $this->callback(function ($index) use (&$indexes) { + return array_shift($indexes) === $index; + })); $this->dbSchemaHandler->expects($this->atLeastOnce()) ->method('fieldExists')