about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2016-02-29 08:21:40 +0000
committerEric Wong <e@80x24.org>2016-02-29 09:34:03 +0000
commit814374aba42185c5a97c6903d6edceb9b4480a0e (patch)
treee3aeffc0a2dee4f96a3a0d66e894c3afd0e7dd8b /t
parent9bae4c858d983d0f0cf7314b50f613818a58d5c5 (diff)
downloadpublic-inbox-814374aba42185c5a97c6903d6edceb9b4480a0e.tar.gz
This is a step towards having consistent, reproducible
test output. (ugh, but each %hash usage screws that up).
Diffstat (limited to 't')
-rw-r--r--t/init.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/init.t b/t/init.t
index 9d1d2f45..8989557c 100644
--- a/t/init.t
+++ b/t/init.t
@@ -13,10 +13,10 @@ use constant pi_init => 'blib/script/public-inbox-init';
         my $cfgfile = "$ENV{PI_DIR}/config";
         my @cmd = (pi_init, 'blist', "$tmpdir/blist",
                    qw(http://example.com/blist blist@example.com));
-        is(system(@cmd), 0, join(' ', @cmd). ' failed');
+        is(system(@cmd), 0, 'public-inbox-init failed');
 
         ok(-e $cfgfile, "config exists, now");
-        is(system(@cmd), 0, join(' ', @cmd). ' failed (idempotent)');
+        is(system(@cmd), 0, 'public-inbox-init failed (idempotent)');
 }
 
 done_testing();