core/modules/outside_in/outside_in.api.php | 4 +++- core/modules/outside_in/tests/src/Functional/OutsideInTest.php | 6 ++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/core/modules/outside_in/outside_in.api.php b/core/modules/outside_in/outside_in.api.php index 2f9439f..c3ed73e 100644 --- a/core/modules/outside_in/outside_in.api.php +++ b/core/modules/outside_in/outside_in.api.php @@ -58,6 +58,8 @@ * Therefore, the entire Settings Tray API is just this annotation: it controls * what the Settings Tray does for a given block. * - * @see outside_in_block_alter + * @see outside_in_block_alter() * @see \Drupal\Tests\outside_in\Functional\OutsideInBlockTest::testPossibleAnnotations() + * + * @} */ diff --git a/core/modules/outside_in/tests/src/Functional/OutsideInTest.php b/core/modules/outside_in/tests/src/Functional/OutsideInTest.php index 3a009bb..1cefffa 100644 --- a/core/modules/outside_in/tests/src/Functional/OutsideInTest.php +++ b/core/modules/outside_in/tests/src/Functional/OutsideInTest.php @@ -3,17 +3,14 @@ namespace Drupal\Tests\outside_in\Functional; use Drupal\block\Entity\Block; -use Drupal\block_content\Entity\BlockContent; -use Drupal\block_content\Entity\BlockContentType; use Drupal\Tests\BrowserTestBase; -use Drupal\user\Entity\Role; /** * Testing opening and saving block forms in the off-canvas dialog. * * @group outside_in */ -class OutsideInBlockTest extends BrowserTestBase { +class OutsideInTest extends BrowserTestBase { /** * {@inheritdoc} @@ -107,4 +104,5 @@ public function testOptOut() { $web_assert->elementNotExists('css', "$block_selector [data-outside-in-edit]"); } } + }