mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-11 22:30:41 +01:00
Upgrade to 1.5.19 breaks a form data test #501
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @basdijkstra on GitHub (Mar 19, 2023).
Originally assigned to: @StefH on GitHub.
So, I've got a test in my RestAssured.Net repo that breaks after upgrading to WireMock .Net 1.5.19, but I don't understand why.
This is what the request that's made looks like:
and this is my stub definition:
Works a charm with version 1.5.18 (WireMock returns the 201), but not anymore after upgrading to 1.5.19 (WireMock returns a 404, so there's probably a matching issue). What am I missing here?
@StefH commented on GitHub (Mar 19, 2023):
It related to new code in https://github.com/WireMock-Net/WireMock.Net/pull/903
I'll take a look.
@StefH commented on GitHub (Mar 19, 2023):
https://github.com/WireMock-Net/WireMock.Net/pull/907
@StefH commented on GitHub (Mar 19, 2023):
@basdijkstra
It should be fixed in 1.5.20
Please test and if you find any other things, pleas e create a issue.
@basdijkstra commented on GitHub (Mar 20, 2023):
Hey @StefH, thank you, that new release has indeed fixed the issue. Appreciate the quick action taken!