Skip to content

Commit

Permalink
Merge pull request #567 from guusdk/sint_trim-config
Browse files Browse the repository at this point in the history
[sinttest] Trim externally-provided configuration
  • Loading branch information
Flowdalic authored Nov 26, 2023
2 parents 38dd648 + 92d4cf5 commit 9203907
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ public static Configuration newConfiguration(String[] testPackages)
}
key = key.substring(SINTTEST.length());
String value = (String) entry.getValue();
properties.put(key, value);
properties.put(key.trim(), value.trim());
}

Builder builder = builder();
Expand Down

0 comments on commit 9203907

Please sign in to comment.