From d63a71a8de78d7936160c961fda3c77be615e319 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Fri, 18 Mar 2022 19:51:37 +0100 Subject: [PATCH] fix test --- tests/Account/PermissionAbstractTest.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/Account/PermissionAbstractTest.php b/tests/Account/PermissionAbstractTest.php index 7032c3e8a..ecdcab444 100644 --- a/tests/Account/PermissionAbstractTest.php +++ b/tests/Account/PermissionAbstractTest.php @@ -118,16 +118,16 @@ final class PermissionAbstractTest extends \PHPUnit\Framework\TestCase } /** - * @testdox The type can be set and returned correctly + * @testdox The category can be set and returned correctly * @covers phpOMS\Account\PermissionAbstract * @group framework */ - public function testTypeInputOutput() : void + public function testCategoryInputOutput() : void { $perm = new class() extends PermissionAbstract {}; - $perm->setType(4); - self::assertEquals(4, $perm->getType()); + $perm->setCategory(4); + self::assertEquals(4, $perm->getCategory()); } /**