Skip to content
Snippets Groups Projects
Commit 74fac8eb authored by catch's avatar catch
Browse files

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

parent eb2baa20
No related branches found
No related tags found
No related merge requests found
......@@ -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\\:
......
......@@ -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')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment