Skip to content

Commit e8cf625

Browse files
committed
fixed tests for 3.10
1 parent afaa14a commit e8cf625

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/test/java/com/arangodb/ArangoCollectionTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -624,6 +624,7 @@ void updateDocumentWithDifferentReturnType(ArangoCollection collection) {
624624
void updateDocumentUpdateRev(ArangoCollection collection) {
625625
final BaseDocument doc = new BaseDocument(UUID.randomUUID().toString());
626626
final DocumentCreateEntity<BaseDocument> createResult = collection.insertDocument(doc, null);
627+
doc.addAttribute("foo", "bar");
627628
final DocumentUpdateEntity<BaseDocument> updateResult = collection.updateDocument(createResult.getKey(), doc,
628629
null);
629630
assertThat(doc.getRevision()).isNull();

0 commit comments

Comments
 (0)