DaanHoogland commented on code in PR #7134:
URL: https://github.com/apache/cloudstack/pull/7134#discussion_r1344018136


##########
utils/src/test/java/com/cloud/utils/PasswordGeneratorTest.java:
##########
@@ -62,4 +63,13 @@ private boolean containsDigit(String password) {
         }
         return false;
     }
+    private boolean containsSpecialChar(String password) {

Review Comment:
   ```suggestion
   
       private boolean containsSpecialChar(String password) {
   ```



##########
utils/src/test/java/com/cloud/utils/PasswordGeneratorTest.java:
##########
@@ -62,4 +63,13 @@ private boolean containsDigit(String password) {
         }
         return false;
     }
+    private boolean containsSpecialChar(String password) {
+        String symbols = new String(passwordgenerator.symbols);

Review Comment:
   ```suggestion
           String symbols = new String(PasswordGenerator.symbols);
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to