Skip to content

Commit 525957f

Browse files
Change assertEquals to assertSame in LinterTest
1 parent 79b05a8 commit 525957f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/LinterTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,6 @@ public static function invalidProvider(): array {
158158
public function testInvalid(string $expression, array $expectedErrors): void {
159159
$errors = CronLinter::lintContent($expression);
160160
$this->assertCount(count($expectedErrors), $errors);
161-
$this->assertEquals($expectedErrors, $errors);
161+
$this->assertSame($expectedErrors, $errors);
162162
}
163163
}

0 commit comments

Comments
 (0)