Fix code quality and run.

This commit is contained in:
James Cole
2023-11-04 14:26:35 +01:00
parent bcf1e4dc13
commit 7436f94feb
15 changed files with 96 additions and 95 deletions

View File

@@ -42,6 +42,6 @@ class NavigationCustomEndOfPeriodTest extends TestCase
$navigation = new Navigation();
$period = $navigation->endOfPeriod($from, 'custom');
$this->assertEquals($expected->toDateString(), $period->toDateString());
self::assertSame($expected->toDateString(), $period->toDateString());
}
}

View File

@@ -31,8 +31,8 @@ use Tests\integration\Traits\CollectsValues;
*/
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
use CollectsValues;
use CreatesApplication;
protected const MAX_ITERATIONS = 2;