diff --git a/tests/TestCase/Controller/ExternalProductCatalogsControllerTest.php b/tests/TestCase/Controller/ExternalProductCatalogsControllerTest.php
index d4c0235..204a6b7 100644
--- a/tests/TestCase/Controller/ExternalProductCatalogsControllerTest.php
+++ b/tests/TestCase/Controller/ExternalProductCatalogsControllerTest.php
@@ -5,6 +5,7 @@ namespace CakeProducts\Test\TestCase\Controller;
 
 use Cake\Log\Log;
 use Cake\ORM\Table;
+use Cake\ORM\TableRegistry;
 use Cake\TestSuite\IntegrationTestTrait;
 use Cake\TestSuite\TestCase;
 use CakeProducts\Controller\ExternalProductCatalogsController;
@@ -148,8 +149,9 @@ class ExternalProductCatalogsControllerTest extends BaseControllerTest
     */
     public function testAddPostSuccess(): void
     {
+        $linksTable = TableRegistry::getTableLocator()->get('CakeProducts.ExternalProductCatalogsProductCatalogs');
         $cntBefore = $this->ExternalProductCatalogs->find()->count();
-        $linksBefore = $this->ExternalProductCatalogs->ExternalProductCatalogsProductCatalogs->find()->count();
+        $linksBefore = $linksTable->find()->count();
 
         $this->loginUserByRole('admin');
         $url = [
@@ -170,7 +172,7 @@ class ExternalProductCatalogsControllerTest extends BaseControllerTest
         $this->assertRedirectContains('external-product-catalogs');
 
         $cntAfter = $this->ExternalProductCatalogs->find()->count();
-        $linksAfter = $this->ExternalProductCatalogs->ExternalProductCatalogsProductCatalogs->find()->count();
+        $linksAfter = $linksTable->find()->count();
 
         $this->assertEquals($cntBefore + 1, $cntAfter);
         $this->assertEquals($linksBefore + 1, $linksAfter);