From 9053c16f372771ac6d7f532d624dd20a1379495a Mon Sep 17 00:00:00 2001 From: Frank Celler Date: Mon, 16 Feb 2015 11:46:29 +0100 Subject: [PATCH] fixed version --- UnitTests/HttpInterface/api-compatibility-spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UnitTests/HttpInterface/api-compatibility-spec.rb b/UnitTests/HttpInterface/api-compatibility-spec.rb index 93eae19464..8085f087b5 100644 --- a/UnitTests/HttpInterface/api-compatibility-spec.rb +++ b/UnitTests/HttpInterface/api-compatibility-spec.rb @@ -16,7 +16,7 @@ describe ArangoDB do doc.code.should eq(200) compatibility = doc.parsed_response['compatibility'] compatibility.should be_kind_of(Integer) - compatibility.should eq(20500) + compatibility.should eq(20600) end it "tests the compatibility value when a broken header is set" do @@ -28,7 +28,7 @@ describe ArangoDB do doc.code.should eq(200) compatibility = doc.parsed_response['compatibility'] compatibility.should be_kind_of(Integer) - compatibility.should eq(20500) + compatibility.should eq(20600) end end