1
0
Fork 0

using 2.5.0-devel

This commit is contained in:
Frank Celler 2015-01-13 18:21:37 +01:00
parent 4b0fc07b64
commit ca16940c77
1 changed files with 2 additions and 2 deletions

View File

@ -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(20400)
compatibility.should eq(20500)
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(20400)
compatibility.should eq(20500)
end
end