From ad8b17819b293f849841e4d1b2a5599fdc30525c Mon Sep 17 00:00:00 2001 From: samvaity Date: Wed, 19 Jul 2023 10:51:00 -0700 Subject: [PATCH] print body --- .../Azure.Sdk.Tools.TestProxy.Tests/SanitizerTestExample.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/test-proxy/Azure.Sdk.Tools.TestProxy.Tests/SanitizerTestExample.cs b/tools/test-proxy/Azure.Sdk.Tools.TestProxy.Tests/SanitizerTestExample.cs index 28d8ed6d5e4..4acbf24152c 100644 --- a/tools/test-proxy/Azure.Sdk.Tools.TestProxy.Tests/SanitizerTestExample.cs +++ b/tools/test-proxy/Azure.Sdk.Tools.TestProxy.Tests/SanitizerTestExample.cs @@ -61,6 +61,7 @@ public async Task ThisShouldWork() session.Session.Sanitize(registeredSanitizer); var newBody = Encoding.UTF8.GetString(session.Session.Entries[0].Response.Body); + Console.WriteLine(newBody); Assert.Contains("REDACTED", newBody); } }