diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2010-09-05 16:21:10 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2010-09-05 16:21:10 +0200 |
commit | 0f3b5b657b95451f0c9328db053710c1edb782c6 (patch) | |
tree | 44d03184a9f9152a1fd3ecac334f5ce3f3196391 /t | |
parent | 61fc6dec5d7312dbfaf19e8ccffda705a128cad4 (diff) |
proper -v handling
Diffstat (limited to 't')
-rw-r--r-- | t/50-icli.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/50-icli.t b/t/50-icli.t index 29702ab..1c9e344 100644 --- a/t/50-icli.t +++ b/t/50-icli.t @@ -118,10 +118,10 @@ $icli = "bin/icli -f t/in/status.dat.weird.2 -c t/in/objects.cache"; $cmd = Test::Command->new(cmd => "$icli -lh -h alpha"); $cmd->exit_isnt_num(0); -$cmd->stdout_is_eq($EMPTY); +$cmd->stdout_is_eq('alpha '); $cmd->stderr_is_eq("Unknown host state: 23\n"); $cmd = Test::Command->new(cmd => "$icli -ls -h aneurysm"); $cmd->exit_isnt_num(0); -$cmd->stdout_is_eq($EMPTY); +$cmd->stdout_is_eq('Disk: / '); $cmd->stderr_is_eq("Unknown service state: 23\n"); |