By xjm on
Change record status:
Published (View all published change records)
Project:
Introduced in branch:
9.3.x
Introduced in version:
9.3.0
Issue links:
Description:
The QuickEdit module will no longer be included in Drupal core starting with Drupal 10. In preparation for this change, all integration tests for QuickEdit have been moved into the QuickEdit module's namespace.
One of the moved files is:
core/modules/image/tests/src/FunctionalJavascript/QuickEditImageEditorTestTrait.php
Any tests using this trait will need to update the trait namespace.
Before
use Drupal\Tests\image\FunctionalJavascript\QuickEditImageEditorTestTrait;
After
use Drupal\Tests\quickedit\FunctionalJavascript\QuickEditImageEditorTestTrait;
Impacts:
Module developers
Site templates, recipes and distribution developers