From 23c0341c11435c7b4b124be6c743eda585a93315 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Sun, 6 Jun 2010 18:13:20 +0200 Subject: Write errors to STDERR --- test/50-efa.t | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'test/50-efa.t') 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'); -- cgit v1.2.3