Skip to content

Commit 19d5265

Browse files
committed
missing brackets
1 parent 388b8a3 commit 19d5265

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/arangodb/ArangoRouteTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public void withHeader() throws InterruptedException, ExecutionException {
6868
public void withParentHeader() throws InterruptedException, ExecutionException {
6969
final ArangoCollectionAsync collection = db.collection("route-test-col");
7070
try {
71-
collection.create().get;
71+
collection.create().get();
7272
final BaseDocument doc = new BaseDocument();
7373
collection.insertDocument(doc).get();
7474
db.route("/_api/document").withHeader(ArangoRequestParam.IF_NONE_MATCH, doc.getRevision())

0 commit comments

Comments
 (0)