Skip to content

Commit

Permalink
fix: assertions
Browse files Browse the repository at this point in the history
  • Loading branch information
rajadilipkolli committed Dec 22, 2024
1 parent 363bcac commit 301f656
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/boot-strategy-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,4 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
- if: ${{ github.ref == 'refs/heads/main' }}
name: Publish container image
run: docker push ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}/boot-strategy-plugin:${{ env.VERSION }}
run: docker push ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}/boot-strategy-plugin:${{ env.VERSION }}
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ void fetchingExcel() {
.bodyJson().convertTo(ProblemDetail.class)
.satisfies(problemDetail -> {
assertThat(problemDetail.getDetail()).isEqualTo("Plugin not found for type: xls");
assertThat(problemDetail.getTitle()).isEqualTo("Product not found");
assertThat(problemDetail.getTitle()).isEqualTo("Product Not found");
assertThat(problemDetail.getStatus()).isEqualTo(400);
assertThat(problemDetail.getType()).isEqualTo("https://api.service.com/errors/bad-request");
assertThat(problemDetail.getInstance()).isEqualTo("/fetch");
Expand Down

0 comments on commit 301f656

Please sign in to comment.