From 4bac1d26a13103ca982aedafc30aaabd10c3d2cc Mon Sep 17 00:00:00 2001 From: Christian Himpe Date: Sun, 26 Nov 2023 17:45:06 +0100 Subject: [PATCH] test: fix console test --- .../java/com/arcadedb/console/ConsoleAsyncInsertTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/console/src/test/java/com/arcadedb/console/ConsoleAsyncInsertTest.java b/console/src/test/java/com/arcadedb/console/ConsoleAsyncInsertTest.java index de44217513..869dc7a1d2 100644 --- a/console/src/test/java/com/arcadedb/console/ConsoleAsyncInsertTest.java +++ b/console/src/test/java/com/arcadedb/console/ConsoleAsyncInsertTest.java @@ -61,8 +61,8 @@ public class ConsoleAsyncInsertTest { static final String DATABASE_NAME = "ConsoleAsyncInsertTest"; static final int PARALLEL_LEVEL = 6; static final String RECORD_TIME_FORMAT_PATTERN = "yyyyMMdd'_'HHmmss.SSSSSS"; - final String userName = "root"; - final String password = com.arcadedb.server.BaseGraphServerTest.DEFAULT_PASSWORD_FOR_TESTS; + static final String userName = "user"; + static final String password = com.arcadedb.server.BaseGraphServerTest.DEFAULT_PASSWORD_FOR_TESTS; AtomicInteger autoIncrementOrderId = new AtomicInteger(0);