Skip to content

Commit

Permalink
suppress warning for hard-coded password in test container
Browse files Browse the repository at this point in the history
  • Loading branch information
maddingo committed Dec 14, 2023
1 parent 2981a79 commit 8c78440
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ public class SftpgoContainer extends GenericContainer<SftpgoContainer> implement
private static final int WEBDAV_PORT = 8088;
private static final int SFTP_PORT = 2022;
public static final String USERNAME = "user";

@SuppressWarnings("java:S2068")
private static final String PASSWORD = "secret";

public SftpgoContainer(String testDataResource) {
Expand Down

0 comments on commit 8c78440

Please sign in to comment.