Issue #3417560 by longwave: Remove withConsecutive() in SqlContentEntityStorageSchemaTest

merge-requests/5345/merge
catch 2024-01-29 14:21:24 +00:00
parent eb2baa20ef
commit 74fac8eb32
2 changed files with 5 additions and 10 deletions

View File

@ -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\\:

View File

@ -1536,12 +1536,12 @@ class SqlContentEntityStorageSchemaTest extends UnitTestCase {
]);
// 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')