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