Skip to content

Commit

Permalink
Change wrong wiremock request.url property
Browse files Browse the repository at this point in the history
The pattern matching should be more precise in order to match the exact
query parameters or no query parameters.
  • Loading branch information
spaceo committed Jan 19, 2024
1 parent 33b7f28 commit 85832f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"id" : "bd783b91-b464-4137-9575-b093008866df",
"name" : "Fees (v2)",
"request" : {
"url" : "/external/agencyid/patron/patronid/fees/v2?includepaid=false&includenonpayable=true",
"urlPattern": "/external/agencyid/patron/patronid/fees/v2\\?includepaid=false&includenonpayable=true$",
"method" : "GET"
},
"response" : {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"id" : "ed922f92-46bb-46c6-926f-73678410fcd0",
"name" : "Fees (v2) (without parameters)",
"request" : {
"urlPath" : "/external/agencyid/patron/patronid/fees/v2",
"urlPattern" : "/external/agencyid/patron/patronid/fees/v2$",
"method" : "GET"
},
"response" : {
Expand Down

0 comments on commit 85832f7

Please sign in to comment.