mockingjay v1.11.2 Release Notes

Release Date: 2019-07-25 // almost 5 years ago
  • The order of querystring values should not matter. Now they dont.

    ✅ This test shows the problem

    func TestItIgnoresOrderOfQueryString(t \*testing.T) { expectedRequest := Request{ URI: "?a=1&b=2", Method: "GET", } incomingRequest := Request{ URI: "?b=2&a=1", Method: "GET", } assert.True(t, requestMatches(expectedRequest, incomingRequest, endpointName, testLogger)) }