hibri / HttpMock

A library for creating Http servers on the fly in tests and stubbing responses
MIT License
128 stars 44 forks source link

Requesthandler.LastRequest does not return the last request #106

Closed hibri closed 5 years ago

hibri commented 5 years ago

Was using a Queue.Peek to get the last request. Peek returns whats at the beginning of the Queue. Changed this to a List.

hibri commented 5 years ago

Fixes #103