From 5a3a9d0d6dc2d61eaa6a631b64297fb5d3a8fd9c Mon Sep 17 00:00:00 2001 From: Max De Marzi Date: Mon, 17 Jun 2013 20:01:10 -0500 Subject: [PATCH] reducing size of batch test to 5k --- spec/integration/rest_batch_streaming_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/integration/rest_batch_streaming_spec.rb b/spec/integration/rest_batch_streaming_spec.rb index b571f15..a72a747 100644 --- a/spec/integration/rest_batch_streaming_spec.rb +++ b/spec/integration/rest_batch_streaming_spec.rb @@ -17,9 +17,9 @@ batch_result.last["body"]["data"]["name"].should == "Max 999" end - it "can send a 10000 item batch" do + it "can send a 5000 item batch" do commands = [] - 10000.times do |x| + 5000.times do |x| commands << [:get_node, 0] end batch_result = @neo.batch *commands