Release 2.5.0 (#4454)
- added command to list users - corrected wrong german translation - work contract validations - prevent error with missing params - use collapsible, minor UI improvement - added classes to target menu buttons in custom rules - disable webpack notifier, incompatible with mac arm - use explicit menu service to generate menu - bump to fontawesome 6 and replace restart icon - change repeat icon for recent activities - moved user bookmarks (favorites) to top nav - fix totp seconds window (leeway) - new migration to fix remaining user preferences with dots in name - remove duplicate named column in user screen - unify and added translations - added missing filter and tags to InvoiceSecurity
This commit is contained in:
@@ -49,7 +49,6 @@ abstract class BaseFormTypeQueryTest extends TestCase
|
||||
$team = new Team('foo');
|
||||
self::assertInstanceOf(BaseFormTypeQuery::class, $sut->addTeam($team));
|
||||
self::assertCount(1, $sut->getTeams());
|
||||
/* @phpstan-ignore-next-line */
|
||||
self::assertSame($team, $sut->getTeams()[0]);
|
||||
|
||||
$sut->setTeams([]);
|
||||
|
||||
@@ -108,8 +108,7 @@ class BaseQueryTest extends TestCase
|
||||
|
||||
$team = new Team('foo');
|
||||
self::assertInstanceOf(BaseQuery::class, $sut->setTeams([$team]));
|
||||
self::assertEquals(1, \count($sut->getTeams()));
|
||||
/* @phpstan-ignore-next-line */
|
||||
self::assertCount(1, $sut->getTeams());
|
||||
self::assertSame($team, $sut->getTeams()[0]);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user