diff --git a/tests/LinterTest.php b/tests/LinterTest.php index 1739c2d..514a36f 100644 --- a/tests/LinterTest.php +++ b/tests/LinterTest.php @@ -158,6 +158,6 @@ public static function invalidProvider(): array { public function testInvalid(string $expression, array $expectedErrors): void { $errors = CronLinter::lintContent($expression); $this->assertCount(count($expectedErrors), $errors); - $this->assertEquals($expectedErrors, $errors); + $this->assertSame($expectedErrors, $errors); } }