diff options
| author | Greg Roach <greg@subaqua.co.uk> | 2026-01-13 12:43:23 +0000 |
|---|---|---|
| committer | Greg Roach <greg@subaqua.co.uk> | 2026-01-13 12:43:23 +0000 |
| commit | c90dad7e7a7be34733462ffae2da48dc254a036c (patch) | |
| tree | d84e4c80e6c6fdea076d59ebe1552345a8fe2132 /tests/app/Services/UserServiceTest.php | |
| parent | 4ac9f75c15214a226b21ec90625c1f3641400d93 (diff) | |
| download | webtrees-c90dad7e7a7be34733462ffae2da48dc254a036c.tar.gz webtrees-c90dad7e7a7be34733462ffae2da48dc254a036c.tar.bz2 webtrees-c90dad7e7a7be34733462ffae2da48dc254a036c.zip | |
Remove PHPSTAN strict checks. 2.1 is moving out of support, and these issues won't be fixed
Diffstat (limited to 'tests/app/Services/UserServiceTest.php')
| -rw-r--r-- | tests/app/Services/UserServiceTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/app/Services/UserServiceTest.php b/tests/app/Services/UserServiceTest.php index 55156aabee..7aef56d49c 100644 --- a/tests/app/Services/UserServiceTest.php +++ b/tests/app/Services/UserServiceTest.php @@ -133,7 +133,7 @@ class UserServiceTest extends TestCase $users = $user_service->all(); - self::assertSame(2, $users->count()); + self::assertCount(2, $users); self::assertSame($user2->id(), $users[0]->id()); self::assertSame($user1->id(), $users[1]->id()); } |
