mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-11 22:30:41 +01:00
Error with parameter that contains a "=" character #182
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 @guerital on GitHub (Jun 19, 2019).
I have created a small sample to report the error I'm facing with:
Running this test that has three test case I have obtained the following result:
@lobsteropteryx commented on GitHub (Aug 13, 2019):
I've submitted a PR which I believe will fix this problem; in our case, we were trying to send a parameter with a double equals
==, and we found that we could match properly on the same querystring with a single equals=in our test code.For example, our production code would send
?key=value==something, and our test code would match on?key=value=something. Don't know if that helps, but thought it might be worth mentioning!@StefH commented on GitHub (Aug 14, 2019):
@lobsteropteryx Thank you.
@guerital A new version will be uploaded to NuGet shortly. Please test, and if the issue is still there, please create a new issue.
@guerital commented on GitHub (Aug 20, 2019):
@lobsteropteryx @StefH Thanks, the fix has worked