summary refs log tree commit diff
path: root/t
diff options
context:
space:
mode:
authorRobin Edwards <robin.ge@gmail.com>2013-05-08 12:44:24 +0100
committerRobin Edwards <robin.ge@gmail.com>2013-05-08 12:45:34 +0100
commit1c118afe08c212a8d2684253681b1647188789c9 (patch)
tree9d75cfc4bd78a73258a6c4d512fb7f01d4874390 /t
parentMerge pull request #26 from kthakore/master (diff)
downloadnet-riak-master.tar.gz
Wait for default delete cleanup timeout of 3s master
- I don't like this solution. Just can't think of a better one
Diffstat (limited to '')
-rw-r--r--t/03_delete_object.t1
1 files changed, 1 insertions, 0 deletions
diff --git a/t/03_delete_object.t b/t/03_delete_object.t
index d2cccf4..3edf2f0 100644
--- a/t/03_delete_object.t
+++ b/t/03_delete_object.t
@@ -16,5 +16,6 @@ test_riak {
     ok $obj->exists, " exists after delete";
     $obj->load;
     ok !$obj->exists, "object don't exists after load";
+    sleep 3;
     is scalar(@{$bucket->get_keys}), 0, "no keys left in bucket";
 };