From d13f8ff83c6b3782596f8368d856024f6b5d1185 Mon Sep 17 00:00:00 2001 From: Dan Church Date: Thu, 20 Jul 2023 15:29:45 -0500 Subject: [PATCH] CI: Add underscores to long number (PBP) --- t/freed-bytes-commas.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/freed-bytes-commas.t b/t/freed-bytes-commas.t index 2c96ca3..81af8d0 100644 --- a/t/freed-bytes-commas.t +++ b/t/freed-bytes-commas.t @@ -18,7 +18,7 @@ ok "freed 1,048,576 bytes (1 MB)\n" eq $stderr, 'prints freed bytes with commas' sub put_file { my @files = @_; - my $bytes = 1048576; # 1 MB + my $bytes = 1_048_576; # 1 MB foreach my $file (@files) { open my $fh, '>', $file or croak("Failed to open file $file for writing: $!");