From b62b46ad3cc2ff274d2c4006f939127bb5450c73 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 3 Oct 2021 09:27:46 +0200 Subject: [PATCH] fix class names and typos --- tests/Application/Testapp/Admin/Uninstaller.php | 2 +- tests/DataStorage/Cache/Connection/RedisCacheTest.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/Application/Testapp/Admin/Uninstaller.php b/tests/Application/Testapp/Admin/Uninstaller.php index a8e0e0299..ca55571c9 100644 --- a/tests/Application/Testapp/Admin/Uninstaller.php +++ b/tests/Application/Testapp/Admin/Uninstaller.php @@ -24,7 +24,7 @@ use phpOMS\Application\UninstallerAbstract; * @link https://orange-management.org * @since 1.0.0 */ -final class Installer extends InstallerAbstract +final class Uninstaller extends UninstallerAbstract { /** * Path of the file diff --git a/tests/DataStorage/Cache/Connection/RedisCacheTest.php b/tests/DataStorage/Cache/Connection/RedisCacheTest.php index d05061d51..753ddaa71 100644 --- a/tests/DataStorage/Cache/Connection/RedisCacheTest.php +++ b/tests/DataStorage/Cache/Connection/RedisCacheTest.php @@ -153,8 +153,8 @@ class RedisCacheTest extends \PHPUnit\Framework\TestCase $result = $this->cache->getLike('key\d'); self::assertEquals(2, \count($result)); - self::assertTrue(\in_array('testVal1', $result)) - self::assertTrue(\in_array('testVal2', $result)) + self::assertTrue(\in_array('testVal1', $result)); + self::assertTrue(\in_array('testVal2', $result)); } public function testExpiredGetLike() : void