summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorYves Orton <demerphq@gmail.com>2023-03-09 17:32:37 +0100
committerYves Orton <demerphq@gmail.com>2023-03-13 21:25:33 +0800
commit1c182948727448fbc828fea5d504bc4fcbac9fcd (patch)
tree0680a945e1e3401a7bea5324c7b48ba1fb29a6af /t
parent351ceb16a6ce2fb54d5a88bd12017b9e4f617466 (diff)
downloadperl-1c182948727448fbc828fea5d504bc4fcbac9fcd.tar.gz
Porting/manifest_lib.pl - autofix space/tab issues on `make manisort`
Diffstat (limited to 't')
-rw-r--r--t/porting/manifest.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/porting/manifest.t b/t/porting/manifest.t
index 666c2d9204..f8910c3e49 100644
--- a/t/porting/manifest.t
+++ b/t/porting/manifest.t
@@ -60,11 +60,11 @@ while (<$m>) {
next;
} elsif ($separator !~ tr/ //c) {
# It's all spaces
- fail("Spaces in entry for $file in MANIFEST at line $.");
+ fail("Spaces in entry for $file in MANIFEST at line $. (run `make manisort` to fix)");
} elsif ($separator =~ tr/\t//) {
- fail("Mixed tabs and spaces in entry for $file in MANIFEST at line $.");
+ fail("Mixed tabs and spaces in entry for $file in MANIFEST at line $. (run `make manisort` to fix)");
} else {
- fail("Odd whitespace in entry for $file in MANIFEST at line $.");
+ fail("Odd whitespace in entry for $file in MANIFEST at line $. (run `make manisort` to fix)");
}
}