Skip to content

Commit

Permalink
Fixed #229
Browse files Browse the repository at this point in the history
  • Loading branch information
cjayswal committed Nov 18, 2018
1 parent 67f2036 commit ef96fb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/qmetry/qaf/automation/util/StringUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ public static Map<String, String> toMap(String[] csvKeyVal, boolean ensureKeyUpp
}
for (String param : csvKeyVal) {
if (isNotBlank(param)) {
String[] kv = param.split("=");
String[] kv = param.split("=",2);
map.put(ensureKeyUppercase ? kv[0].toUpperCase() : kv[0], kv.length > 1 ? (kv[1]) : "");
}
}
Expand Down

0 comments on commit ef96fb5

Please sign in to comment.