diff --git a/tests/src/Kernel/Matchers/NodeMatcherTest.php b/tests/src/Kernel/Matchers/NodeMatcherTest.php index a0bb5dc..428f203 100644 --- a/tests/src/Kernel/Matchers/NodeMatcherTest.php +++ b/tests/src/Kernel/Matchers/NodeMatcherTest.php @@ -105,7 +105,7 @@ class NodeMatcherTest extends LinkitKernelTestBase { /** * Tests node matcher. */ - protected function testNodeMatcherWidthDefaultConfiguration() { + public function testNodeMatcherWidthDefaultConfiguration() { /** @var \Drupal\linkit\MatcherInterface $plugin */ $plugin = $this->manager->createInstance('entity:node', []); $suggestions = $plugin->execute('Lorem'); @@ -115,7 +115,7 @@ class NodeMatcherTest extends LinkitKernelTestBase { /** * Tests node matcher with bundle filer. */ - protected function testNodeMatcherWidthBundleFiler() { + public function testNodeMatcherWidthBundleFiler() { /** @var \Drupal\linkit\MatcherInterface $plugin */ $plugin = $this->manager->createInstance('entity:node', [ 'settings' => [ @@ -132,7 +132,7 @@ class NodeMatcherTest extends LinkitKernelTestBase { /** * Tests node matcher with include unpublished setting activated. */ - protected function testNodeMatcherWidthIncludeUnpublished() { + public function testNodeMatcherWidthIncludeUnpublished() { /** @var \Drupal\linkit\MatcherInterface $plugin */ $plugin = $this->manager->createInstance('entity:node', [ 'settings' => [ @@ -170,7 +170,7 @@ class NodeMatcherTest extends LinkitKernelTestBase { /** * Tests node matcher with tokens in the matcher metadata. */ - protected function testNodeMatcherWidthMetadataTokens() { + public function testNodeMatcherWidthMetadataTokens() { /** @var \Drupal\linkit\MatcherInterface $plugin */ $plugin = $this->manager->createInstance('entity:node', [ 'settings' => [ @@ -191,7 +191,7 @@ class NodeMatcherTest extends LinkitKernelTestBase { /** * Test node matches generated from an absolute URL input. */ - protected function testNodeMatcherFromAbsoluteUrl() { + public function testNodeMatcherFromAbsoluteUrl() { /** @var \Drupal\linkit\MatcherInterface $plugin */ $plugin = $this->manager->createInstance('entity:node'); @@ -206,7 +206,7 @@ class NodeMatcherTest extends LinkitKernelTestBase { /** * Test node matches generated from an absolute URL input. */ - protected function testNodeMatcherFromAbsoluteUrlWithLanguagePrefix() { + public function testNodeMatcherFromAbsoluteUrlWithLanguagePrefix() { /** @var \Drupal\linkit\MatcherInterface $plugin */ $plugin = $this->manager->createInstance('entity:node');