Skip to content

Commit

Permalink
Fix test with Assert.fail to include a message.
Browse files Browse the repository at this point in the history
Signed-off-by: Marc Handalian <[email protected]>
  • Loading branch information
mch2 committed Jul 21, 2022
1 parent c37b752 commit 148e2b8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public void onResponse(GetSegmentFilesResponse getSegmentFilesResponse) {
@Override
public void onFailure(Exception e) {
logger.error("Unexpected failure", e);
Assert.fail();
Assert.fail("Unexpected failure from startSegmentCopy listener: " + e);
}
});
}
Expand Down

0 comments on commit 148e2b8

Please sign in to comment.