Removing unused method

This commit is contained in:
lucas.hipolito 2025-10-27 16:18:43 +01:00
parent 5a3bb8ebf7
commit 8e6d51c19b

View file

@ -297,10 +297,4 @@ public class WriteHttpResponseTests
using var reader = new StreamReader(httpContext.Response.Body);
return reader.ReadToEnd();
}
private static byte[] GetResponseBytes(HttpContext httpContext)
{
httpContext.Response.Body.Seek(0, SeekOrigin.Begin);
return ((MemoryStream)httpContext.Response.Body).ToArray();
}
}