Patch for testing error

> Strings must use doublequote  quotes
This commit is contained in:
Niall 2024-08-21 22:20:57 +00:00
parent 54d6c7b506
commit 068a94d61b

View file

@ -65,7 +65,7 @@ class GeneratePassword extends Operation {
resultArray[i] = alphabet.charAt(Math.floor(Math.random() * alphabet.length));
}
return resultArray.join('');
return resultArray.join("");
}
}