aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/UtilsTest.php
diff options
context:
space:
mode:
authorVirtualTam <virtualtam@flibidi.net>2016-01-18 00:24:36 +0100
committerVirtualTam <virtualtam@flibidi.net>2016-01-18 00:24:36 +0100
commitaa7f7b3ea66e0155960765d1213c632dafa74918 (patch)
treeda930d531d73d29a771fc6bde51b2279053fdf9f /tests/UtilsTest.php
parent122d90ef8d83c6702a8b47f81c32fa3ba7a53c31 (diff)
downloadShaarli-aa7f7b3ea66e0155960765d1213c632dafa74918.tar.gz
Shaarli-aa7f7b3ea66e0155960765d1213c632dafa74918.tar.zst
Shaarli-aa7f7b3ea66e0155960765d1213c632dafa74918.zip
fix: use PHP_EOL for carriage returns in file logs
Relates to #436 Signed-off-by: VirtualTam <virtualtam@flibidi.net>
Diffstat (limited to 'tests/UtilsTest.php')
-rw-r--r--tests/UtilsTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/UtilsTest.php b/tests/UtilsTest.php
index f3bb556e..3073b5eb 100644
--- a/tests/UtilsTest.php
+++ b/tests/UtilsTest.php
@@ -51,7 +51,7 @@ class UtilsTest extends PHPUnit_Framework_TestCase
51 protected function getLastLogEntry() 51 protected function getLastLogEntry()
52 { 52 {
53 $logFile = file(self::$testLogFile); 53 $logFile = file(self::$testLogFile);
54 return explode(' - ', trim(array_pop($logFile), '\n')); 54 return explode(' - ', trim(array_pop($logFile), PHP_EOL));
55 } 55 }
56 56
57 /** 57 /**