Fix type NO_CI

This commit is contained in:
Dennis Eichhorn 2021-04-22 15:47:42 +02:00 committed by GitHub
parent d03848cc3d
commit 471e1f0099
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -113,8 +113,8 @@ class PermissionAbstractTest extends \PHPUnit\Framework\TestCase
{
$perm = new class() extends PermissionAbstract {};
$perm->setFrom(3);
self::assertEquals(3, $perm->getFrom());
$perm->setFrom('3');
self::assertEquals('3', $perm->getFrom());
}
/**