Skip to content

Commit 4658d49

Browse files
committed
fix tentative
1 parent 655bcc2 commit 4658d49

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ha-raft/src/test/java/com/arcadedb/server/ha/raft/GetClusterHandlerIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ private JSONObject queryClusterEndpoint(final int serverIndex) throws Exception
8282
final HttpURLConnection conn = (HttpURLConnection) url.openConnection();
8383
conn.setRequestMethod("GET");
8484
conn.setRequestProperty("Authorization",
85-
"Basic " + Base64.getEncoder().encodeToString("root:playwithdata".getBytes(StandardCharsets.UTF_8)));
85+
"Basic " + Base64.getEncoder().encodeToString(("root:" + DEFAULT_PASSWORD_FOR_TESTS).getBytes(StandardCharsets.UTF_8)));
8686

8787
try {
8888
assertThat(conn.getResponseCode()).isEqualTo(200);

0 commit comments

Comments
 (0)