Skip to content

Commit

Permalink
Fixed test bug in sending silent binary incr/decr commands.
Browse files Browse the repository at this point in the history
This went through incorrectly because the values weren't being checked
so the test was falsely being reported as successful.
  • Loading branch information
dustin committed Jan 26, 2009
1 parent b0035cb commit 007add0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/binary.t
Expand Up @@ -442,7 +442,7 @@ sub silent_incrdecr {
my ($cmd, $key, $amt, $init, $exp) = @_;
my $opaque = 8275753;

$mc->send_silent(::CMD_INCREMENTQ, $key, '', $opaque,
$mc->send_silent($cmd, $key, '', $opaque,
$mc->_incrdecr_header($amt, $init, $exp));
}

Expand Down

0 comments on commit 007add0

Please sign in to comment.