Skip to content

Commit

Permalink
converts URI to string
Browse files Browse the repository at this point in the history
  • Loading branch information
rajadilipkolli committed Dec 22, 2024
1 parent 69f198e commit ee5137f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ void fetchingExcel() {
assertThat(problemDetail.getTitle()).isEqualTo("Product Not Found");
assertThat(problemDetail.getStatus()).isEqualTo(400);
assertThat(problemDetail.getType().toString()).isEqualTo("https://api.service.com/errors/bad-request");
assertThat(problemDetail.getInstance()).isEqualTo("/fetch");
assertThat(problemDetail.getInstance().toString()).isEqualTo("/fetch");
});
}
}

0 comments on commit ee5137f

Please sign in to comment.