Skip to content

Commit

Permalink
Apply Hinrik's patch to increase test failure verbosity.
Browse files Browse the repository at this point in the history
  • Loading branch information
rcaputo committed Aug 3, 2010
1 parent 1d6d7b6 commit 3f5fc1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions t/90_regression/rt56417-wheel-run.t
Expand Up @@ -72,9 +72,9 @@ sub _wheel_child {
my $exitval = $_[ARG2];

if ( $_[HEAP]->{type} eq 'real' ) {
ok( $exitval == 0, "Set proper exitval for '" . $_[HEAP]->{type} . "'" );
is( $exitval, 0, "Set proper exitval for '" . $_[HEAP]->{type} . "'" );
} else {
ok( $exitval > 0, "Set proper exitval for '" . $_[HEAP]->{type} . "'" );
cmp_ok( $exitval, '>', 0, "Set proper exitval for '" . $_[HEAP]->{type} . "'" );
}

$poe_kernel->sig_handled();
Expand Down

0 comments on commit 3f5fc1e

Please sign in to comment.