1
0
Fork 0

fixed version

This commit is contained in:
Frank Celler 2015-07-13 18:06:33 +02:00
parent 32c1a4ee5d
commit 0f1ee72723
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(20600)
compatibility.should eq(20700)
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(20600)
compatibility.should eq(20700)
end
end