Skip to content

Commit 0c13d58

Browse files
committed
fixed arangodbtest
1 parent 3d44550 commit 0c13d58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/arangodb/ArangoDBTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ public void getDatabases() {
109109
assertThat(dbs, is(notNullValue()));
110110
assertThat(dbs.size(), is(greaterThan(0)));
111111
final int dbCount = dbs.size();
112-
assertThat(dbs.iterator().next(), is("_system"));
112+
assertThat(dbs.contains("_system"), is(true));
113113
arangoDB.createDatabase(BaseTest.TEST_DB_CUSTOM);
114114
dbs = arangoDB.getDatabases();
115115
assertThat(dbs.size(), is(greaterThan(dbCount)));

0 commit comments

Comments
 (0)