diff options
author | Daniel Friesel <derf@finalrewind.org> | 2011-04-24 09:30:46 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2011-04-24 09:30:46 +0200 |
commit | 4ab560292a5c6b1fbed136d769b4a4b7345f2c9c (patch) | |
tree | 5635eb8dc9e9eac0517093dd7efd0b8c9c8e6767 /t/50-icli.t | |
parent | cf1c773dff3bc1fe35a6550f2cfffafa2658aa3d (diff) |
Remove list queue output tests, the failed on systems not using GMT+1
Diffstat (limited to 't/50-icli.t')
-rw-r--r-- | t/50-icli.t | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/50-icli.t b/t/50-icli.t index 7c48b4f..62d7912 100644 --- a/t/50-icli.t +++ b/t/50-icli.t @@ -6,7 +6,7 @@ use 5.010; # We need commas in our qw list, they're not accidental no warnings 'qw'; -use Test::Command tests => (38*3); +use Test::Command tests => (36*3 + 4); my $icli = 'bin/icli -f t/in/status.dat -c t/in/objects.cache -xn'; @@ -103,12 +103,12 @@ $cmd->stderr_is_eq($EMPTY); $cmd = Test::Command->new(cmd => "$icli -lq"); $cmd->exit_is_num(0); -$cmd->stdout_is_file('t/out/list_queue'); +# no stdout test, fails with timezones != GMT+1 $cmd->stderr_is_eq($EMPTY); $cmd = Test::Command->new(cmd => "$icli -lq -h aneurysm"); $cmd->exit_is_num(0); -$cmd->stdout_is_file('t/out/list_queue_aneurysm'); +# no stdout test, fails with timezones != GMT+1 $cmd->stderr_is_eq($EMPTY); |