Skip to content

Commit

Permalink
fix parameter null bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Alena Zubrevich authored and Alena Zubrevich committed Nov 17, 2017
1 parent be5f31b commit 5bcd6d7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/epam/jira/util/JiraInfoProvider.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public static void saveValue(String title, String value) {
String key = findJiraTestKey();

if (key != null) {
Parameter parameter = new Parameter(title, value != null ? value : null);
Parameter parameter = new Parameter(title, value != null ? value : "null");
if (jiraKeyParametersMapping.containsKey(key)) {
jiraKeyParametersMapping.get(key).add(parameter);
} else {
Expand Down
Binary file modified test-management-adapter-1.7-jar-with-dependencies.jar
Binary file not shown.

0 comments on commit 5bcd6d7

Please sign in to comment.