Skip to content

Commit

Permalink
1814 platform-component - fix test - numbers shouldnt be capitalized
Browse files Browse the repository at this point in the history
  • Loading branch information
igorbeslic committed Dec 4, 2024
1 parent 98802f1 commit ba0c9e7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ private List<String> getRandomApplicableValues() {
if (RANDOM.nextBoolean()) {
char charToReplace = name.charAt(RANDOM.nextInt(name.length()));

if (charToReplace == 95) {
if ((charToReplace == 95) || ((charToReplace > 47) && (charToReplace < 58))) {
continue;
}

Expand Down

0 comments on commit ba0c9e7

Please sign in to comment.