Skip to content

Commit 3bcdfad

Browse files
committed
CI: fixed test docker image
1 parent 124b3d7 commit 3bcdfad

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/resilience.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
run: ./docker/start_db.sh
3939
env:
4040
STARTER_MODE: cluster
41-
DOCKER_IMAGE: docker.io/arangodb-preview:devel-nightly
41+
DOCKER_IMAGE: docker.io/arangodb/arangodb-preview:devel-nightly
4242
COMPRESSION: true
4343
- name: Info
4444
run: mvn -version

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
docker-img:
3131
- docker.io/arangodb/arangodb:3.11.6
3232
- docker.io/arangodb/enterprise:3.11.6
33-
- docker.io/arangodb-preview:devel-nightly
33+
- docker.io/arangodb/arangodb-preview:devel-nightly
3434
topology:
3535
- single
3636
- cluster
@@ -40,7 +40,7 @@ jobs:
4040
user-language:
4141
- en
4242
exclude:
43-
- docker-img: docker.io/arangodb-preview:devel-nightly
43+
- docker-img: docker.io/arangodb/arangodb-preview:devel-nightly
4444
topology: activefailover
4545

4646
steps:

driver/src/test/java/com/arangodb/ArangoCollectionAsyncTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2987,7 +2987,7 @@ void grantAccessRW(ArangoCollectionAsync collection) throws ExecutionException,
29872987
ArangoDBAsync arangoDB = collection.db().arango();
29882988
try {
29892989
arangoDB.createUser("user1", "1234", null).get();
2990-
collection.grantAccess("user1", Permissions.RW);
2990+
collection.grantAccess("user1", Permissions.RW).get();
29912991
} finally {
29922992
arangoDB.deleteUser("user1").get();
29932993
}

0 commit comments

Comments
 (0)