Skip to content
This repository was archived by the owner on Jan 10, 2020. It is now read-only.

Commit 2659445

Browse files
committed
use _ for env
1 parent 9f5f408 commit 2659445

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/org/arangodb/objectmapper/test/BaseTestCase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ private Properties loadPropertiesFromFile() {
115115

116116
props.forEach((key, val) -> {
117117

118-
String systemProp = System.getProperty(key.toString());
118+
String systemProp = System.getProperty(key.toString().replace(".", "_"));
119119

120120
if(systemProp != null && systemProp.equals(val) == false) {
121121
LOG.info("Found System Property for " + key + " with Value " + systemProp);

0 commit comments

Comments
 (0)