#490 use byte content not stream (#498)

This commit is contained in:
Tom Pallister
2018-07-25 08:34:58 +01:00
committed by GitHub
parent 69ca874239
commit d186f0e1b6
5 changed files with 24 additions and 10 deletions

View File

@ -16,6 +16,7 @@
using System.IO;
using System.Text;
using System.Security.Cryptography;
using System.Threading.Tasks;
public class RequestMapperTests
{
@ -378,9 +379,9 @@
_inputRequest.Body = null;
}
private void WhenMapped()
private async Task WhenMapped()
{
_mappedRequest = _requestMapper.Map(_inputRequest);
_mappedRequest = await _requestMapper.Map(_inputRequest);
}
private void ThenNoErrorIsReturned()