Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Desportes <williamdes@wdes.fr>2020-05-20 22:15:06 +0300
committerWilliam Desportes <williamdes@wdes.fr>2020-05-20 22:15:06 +0300
commit8ef514390120ce88d8db31547adc8886bc4cedd7 (patch)
treed0d0772b77c68a81ccd1350d674214bc7495d8d7 /test/classes/Table
parent8624fbbe97b3c3815b1cd3f198f7271d173143f0 (diff)
Use AbstractTestCase on all unit tests
Signed-off-by: William Desportes <williamdes@wdes.fr>
Diffstat (limited to 'test/classes/Table')
-rw-r--r--test/classes/Table/SearchTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/classes/Table/SearchTest.php b/test/classes/Table/SearchTest.php
index 6c79d80fbf..87645f8fce 100644
--- a/test/classes/Table/SearchTest.php
+++ b/test/classes/Table/SearchTest.php
@@ -4,9 +4,9 @@ declare(strict_types=1);
namespace PhpMyAdmin\Tests\Table;
use PhpMyAdmin\Table\Search;
-use PHPUnit\Framework\TestCase;
+use PhpMyAdmin\Tests\AbstractTestCase;
-class SearchTest extends TestCase
+class SearchTest extends AbstractTestCase
{
/** @var Search */
private $search;