Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vjik committed Oct 13, 2023
1 parent 01d734e commit 6813542
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Unit/Helper/BacktraceIgnoreMatcherTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function testFileIgnorance(): void
$this->assertTrue(
BacktraceIgnoreMatcher::isIgnoredByFile(
$backtrace,
[preg_quote(dirname($file)) . DIRECTORY_SEPARATOR . '*']
[preg_quote(dirname($file) . DIRECTORY_SEPARATOR) . '*']
)
);
$this->assertFalse(BacktraceIgnoreMatcher::isIgnoredByFile($backtrace, [preg_quote(__FILE__)]));
Expand Down

0 comments on commit 6813542

Please sign in to comment.