diff syslog.t @ 466:a64b4057189c

Tests: removed chop from read_file() in syslog.t. String comparison of syslog data it could only be used for is not implemented.
author Sergey Kandaurov <pluknet@nginx.com>
date Mon, 22 Sep 2014 13:29:20 +0400
parents 62d1f96c5ff4
children 43e05ac6c23c
line wrap: on
line diff
--- a/syslog.t
+++ b/syslog.t
@@ -274,7 +274,6 @@ sub read_file {
 	local $/;
 	my $content = <$fh>;
 	close $fh;
-	chop $content;
 	return $content;
 }