From c8ec568572a62b6f73105b5862a52c8a38555852 Mon Sep 17 00:00:00 2001 From: Marius Gavrilescu Date: Tue, 11 Jun 2019 15:13:16 +0300 Subject: [PATCH] binmode FH in test (RT #125995) --- t/01-uncompress.t | 1 + 1 file changed, 1 insertion(+) diff --git a/t/01-uncompress.t b/t/01-uncompress.t index c29fa6e..f67c5e4 100644 --- a/t/01-uncompress.t +++ b/t/01-uncompress.t @@ -15,6 +15,7 @@ for my $test () { is $decoded, $expected, "$test"; open FH, '<', $test; + binmode FH; my $unbro = IO::Uncompress::Brotli->create; my ($buf, $out); until (eof FH) { -- 2.30.2