summaryrefslogtreecommitdiff
path: root/tests/FileSystemDriverTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/FileSystemDriverTest.php')
-rw-r--r--tests/FileSystemDriverTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/FileSystemDriverTest.php b/tests/FileSystemDriverTest.php
index eb9b873..0ca1241 100644
--- a/tests/FileSystemDriverTest.php
+++ b/tests/FileSystemDriverTest.php
@@ -122,7 +122,7 @@ class FileSystemDriverTest extends MockeryTestCase
$loggr->info('test7');
$loggr->debug('test8');
- $lines = array_filter(explode("\r\n", $data), fn($line) => !empty($line));
+ $lines = array_filter(explode("\n", $data), fn($line) => !empty($line));
$this->assertCount(8, $lines);
$first_line = $lines[0];