summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAndreas Gruenbacher <agruen@suse.de>2006-01-29 18:13:47 +0000
committerAndreas Gruenbacher <agruen@suse.de>2006-01-29 18:13:47 +0000
commit6600acc48de524491c1710d51ab039c3bd645499 (patch)
treea959756ca558f492bd038c07651e2db2724abab2 /test
parentfab2fa44807446fe9de8a0d8035d3a11f2ceb196 (diff)
downloadquilt-6600acc48de524491c1710d51ab039c3bd645499.tar.gz
- Don't pad right-hand side of ==, !=, =~, !~ with spaces.
Diffstat (limited to 'test')
-rwxr-xr-xtest/run5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/run b/test/run
index a4c6951..0abc99b 100755
--- a/test/run
+++ b/test/run
@@ -113,9 +113,8 @@ sub process_test($$$$) {
chomp $l;
my $r = defined($result->[$n]) ? $result->[$n] : "~";
chomp $r;
- print sprintf("%-" . ($width-3) .
- "s %s %-" . ($width-1) .
- "s\n", $r, $good[$n], $l);
+ print sprintf("%-" . ($width-3) . "s %s %s\n",
+ $r, $good[$n], $l);
}
}
}