Changed replaceAll() to replace() (sonarqube)

This commit is contained in:
Erik C. Thauvin 2019-09-13 01:23:48 -07:00
parent f161ac2e79
commit 2166e166e8
7 changed files with 13 additions and 13 deletions

View file

@ -65,7 +65,7 @@ class LocalProperties {
}
private static String keyToEnv(final String key) {
return key.replaceAll("-", "_").toUpperCase(Constants.LOCALE);
return key.replace("-", "_").toUpperCase(Constants.LOCALE);
}
@BeforeSuite(alwaysRun = true)