From 525957f3d8b6451b21227abaee109b50003fdc8d Mon Sep 17 00:00:00 2001 From: Jahidul Pabel Islam Date: Thu, 15 Jan 2026 23:30:47 +0000 Subject: [PATCH] Change assertEquals to assertSame in LinterTest --- tests/LinterTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } }