mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-11 22:30:41 +01:00
Fix Response.Delay property serialization (#260)
* Fix Response.Delay property serialization issue * Fix Response.Delay
This commit is contained in:
@@ -77,7 +77,7 @@ namespace WireMock.Serialization
|
||||
},
|
||||
Response = new ResponseModel
|
||||
{
|
||||
Delay = response.Delay?.Milliseconds
|
||||
Delay = (int?) response.Delay?.TotalMilliseconds
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user