Fix for PutMappingAsync not setting Content-Type (#183)

This commit is contained in:
seanamosw
2018-08-16 19:29:03 +02:00
committed by Stef Heyenrath
parent 1a184ebfdf
commit 01d6dce62d

View File

@@ -84,6 +84,7 @@ namespace WireMock.Client
/// <param name="guid">The Guid</param>
/// <param name="mapping">MappingModel</param>
[Put("__admin/mappings/{guid}")]
[Header("Content-Type", "application/json")]
Task<StatusModel> PutMappingAsync([Path] Guid guid, [Body] MappingModel mapping);
/// <summary>