summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Allbery <rra@cpan.org>2020-01-08 10:27:32 -0800
committerRuss Allbery <rra@cpan.org>2020-01-08 10:27:32 -0800
commitc237c1628040e0cfa35235ecd1170df42a7e82de (patch)
tree1056b9667267f15eb153ebfe21bd4e281d5517e1
parent75cf686f0093b74a1ddddd0ea9b21520f583fe26 (diff)
Fix code formatting issue
-rwxr-xr-xt/dist/basic.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/dist/basic.t b/t/dist/basic.t
index 939a1e1..95cdb47 100755
--- a/t/dist/basic.t
+++ b/t/dist/basic.t
@@ -106,7 +106,7 @@ print {$fh} "Some data\n" or die "cannot write to some-file: $!\n";
close($fh);
$stdout = capture_stdout { eval { $dist->make_distribution() } };
is($@, "2 files missing from distribution\n", 'correct error for two files');
-like($stdout, qr{ some-file }xms, 'output mentions the first file');
+like($stdout, qr{ some-file }xms, 'output mentions the first file');
like($stdout, qr{ another-file }xms, 'output mentions the other file');
@missing = $dist->check_dist($sourcedir, $tarball);
is_deeply(['another-file', 'some-file'], \@missing, 'check_dist matches');