summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordormando <dormando@rydia.net>2012-07-29 18:27:56 -0700
committerdormando <dormando@rydia.net>2012-07-29 18:27:56 -0700
commit4461fec53de394cc08aef83c5d4764046c8073d7 (patch)
treefc4d48b6731273bb6429becaafe70af354103c87
parenta7fc5143fba5505c40ebdb099385d71435841a1d (diff)
downloadmemcached-4461fec53de394cc08aef83c5d4764046c8073d7.tar.gz
fix some binary.t stuff
I broke 'em earlier
-rwxr-xr-xt/binary.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/binary.t b/t/binary.t
index b427fc4..3eb8e0b 100755
--- a/t/binary.t
+++ b/t/binary.t
@@ -2,7 +2,7 @@
use strict;
use warnings;
-use Test::More tests => 3539;
+use Test::More tests => 3549;
use FindBin qw($Bin);
use lib "$Bin/lib";
use MemcachedTest;
@@ -274,7 +274,7 @@ is($mc->decr("x", 211), 0, "Floor is zero");
# Test miss as well
$mc->set("totouch", "toast3", 0, 1);
- my $res = $mc->touch("totouch", 1);
+ $res = $mc->touch("totouch", 1);
sleep 3;
$empty->("totouch");
}