Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
HardNorth committed Nov 6, 2024
1 parent 0094f59 commit 8354ec4
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/test/java/com/epam/reportportal/service/LaunchTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -563,11 +563,7 @@ public void verify_not_failing_item_with_issue_on_passed_test_if_it_turned_off()
verify(rpClient).finishTestItem(eq(itemId.blockingGet()), captor.capture());
FinishTestItemRQ resultFinishRq = captor.getValue();

assertThat(resultFinishRq.getIssue(), notNullValue());
Issue issue = resultFinishRq.getIssue();
assertThat(issue.getIssueType(), nullValue());
assertThat(issue.getComment(), nullValue());
assertThat(issue.getExternalSystemIssues(), nullValue());
assertThat(resultFinishRq.getIssue(), nullValue());
}

@Test
Expand Down

0 comments on commit 8354ec4

Please sign in to comment.