# HG changeset patch # User Sergey Kandaurov # Date 1411378160 -14400 # Node ID a64b4057189c2fc6d7b456d21564d14273921fc1 # Parent 5a1f2e1ea6cd0ee758c226e1f452d6e0f3fd7ddb Tests: removed chop from read_file() in syslog.t. String comparison of syslog data it could only be used for is not implemented. diff --git a/syslog.t b/syslog.t --- a/syslog.t +++ b/syslog.t @@ -274,7 +274,6 @@ sub read_file { local $/; my $content = <$fh>; close $fh; - chop $content; return $content; }