diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2010-06-06 18:13:20 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2010-06-06 18:13:20 +0200 |
commit | 23c0341c11435c7b4b124be6c743eda585a93315 (patch) | |
tree | 61d7bb292bf085f640121fd612deb8d82b2ad9d8 /test | |
parent | aa5098642d7e55d5a9fa83998457d788b71798c0 (diff) |
Write errors to STDERR
Diffstat (limited to 'test')
-rw-r--r-- | test/50-efa.t | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/50-efa.t b/test/50-efa.t index ef97fb9..0c1d7ab 100644 --- a/test/50-efa.t +++ b/test/50-efa.t @@ -142,21 +142,21 @@ $cmd = Test::Command->new( ); $cmd->exit_is_num(1); -$cmd->stdout_is_file('test/parse_ambiguous'); -$cmd->stderr_is_eq($EMPTY); +$cmd->stdout_is_eq($EMPTY); +$cmd->stderr_is_file('test/parse_ambiguous'); $cmd = Test::Command->new( cmd => "$efa $test_parse < test/dump_no_connections" ); $cmd->exit_is_num(2); -$cmd->stdout_is_file('test/parse_no_connections'); -$cmd->stderr_is_eq($EMPTY); +$cmd->stdout_is_eq($EMPTY); +$cmd->stderr_is_file('test/parse_no_connections'); $cmd = Test::Command->new( cmd => "$efa $test_parse < test/dump_invalid_input" ); $cmd->exit_is_num(3); -$cmd->stdout_is_file('test/parse_invalid_input'); -$cmd->stderr_is_eq($EMPTY); +$cmd->stdout_is_eq($EMPTY); +$cmd->stderr_is_file('test/parse_invalid_input'); |