This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Storable: t/canonical.t: avoid stderr noise
authorDavid Mitchell <davem@iabyn.com>
Tue, 1 Dec 2020 16:45:58 +0000 (16:45 +0000)
committerDavid Mitchell <davem@iabyn.com>
Tue, 1 Dec 2020 16:45:58 +0000 (16:45 +0000)
informational text should to stdout, not stderr

dist/Storable/t/canonical.t

index f7791ce..3b930aa 100644 (file)
@@ -34,7 +34,7 @@ $maxarraysize = 100;
 
 eval { require Digest::MD5; };
 $gotmd5 = !$@;
 
 eval { require Digest::MD5; };
 $gotmd5 = !$@;
-diag "Will use Digest::MD5" if $gotmd5;
+note "Will use Digest::MD5" if $gotmd5;
 
 # Use Data::Dumper if debugging and it is available to create an ASCII dump
 
 
 # Use Data::Dumper if debugging and it is available to create an ASCII dump