We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 655bcc2 commit 4658d49Copy full SHA for 4658d49
1 file changed
ha-raft/src/test/java/com/arcadedb/server/ha/raft/GetClusterHandlerIT.java
@@ -82,7 +82,7 @@ private JSONObject queryClusterEndpoint(final int serverIndex) throws Exception
82
final HttpURLConnection conn = (HttpURLConnection) url.openConnection();
83
conn.setRequestMethod("GET");
84
conn.setRequestProperty("Authorization",
85
- "Basic " + Base64.getEncoder().encodeToString("root:playwithdata".getBytes(StandardCharsets.UTF_8)));
+ "Basic " + Base64.getEncoder().encodeToString(("root:" + DEFAULT_PASSWORD_FOR_TESTS).getBytes(StandardCharsets.UTF_8)));
86
87
try {
88
assertThat(conn.getResponseCode()).isEqualTo(200);
0 commit comments