1
0
Fork 0

fixed version

This commit is contained in:
Frank Celler 2015-02-16 11:46:29 +01:00
parent 011e19194f
commit 9053c16f37
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(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