From 296960d75445facec3164f38dc03c32aa13dbce6 Mon Sep 17 00:00:00 2001 From: Pete Elmore Date: Mon, 30 Jul 2012 13:31:45 -0700 Subject: [PATCH] Fix my hard tabs. --- spec/integration/rest_batch_spec.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spec/integration/rest_batch_spec.rb b/spec/integration/rest_batch_spec.rb index e70e44d..692c7f9 100644 --- a/spec/integration/rest_batch_spec.rb +++ b/spec/integration/rest_batch_spec.rb @@ -149,10 +149,10 @@ node2 = @neo.create_node batch_result = @neo.batch [:create_relationship, "friends", node1, node2, {:since => "time immemorial"}] batch_result.should_not be_nil - batch_result[0]["status"].should == 201 - id = batch_result.first["body"]["self"].split("/").last + batch_result[0]["status"].should == 201 + id = batch_result.first["body"]["self"].split("/").last batch_result = @neo.batch [:delete_relationship, id] - batch_result[0]["status"].should == 204 + batch_result[0]["status"].should == 204 batch_result[0]["from"].should == "/relationship/#{id}" end