Skip to content

Commit

Permalink
get the nummatrix.t test working again
Browse files Browse the repository at this point in the history
  • Loading branch information
Whiteknight committed Nov 18, 2009
1 parent 676227d commit b58e1a6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions t/10-nummatrix.t
Expand Up @@ -547,7 +547,7 @@ sub method_mem_transpose() {

$P2.'mem_transpose'()
$I0 = $P2 == $P1
ok($I0, "transpose does what it should")
ok($I0, "mem_transpose does what it should")
}
}

Expand Down Expand Up @@ -711,15 +711,15 @@ sub method_iterate_function_inplace() {
}
sub _iterate_helper_squared($matrix, $value, $x, $y) {
return($value * $value);
return $value * $value;
}
sub _iterate_helper_ax_b($matrix, $value, $x, $y, $a, $b) {
return(($a * $value) + $b);
return ($a * $value) + $b;
}
sub _iterate_helper_coords($matrix, $value, $x, $y) {
return($x + $y);
return $x + $y;
}
sub method_set_block() {
Expand Down

0 comments on commit b58e1a6

Please sign in to comment.