From 3ac00fd4aaf4a1a27a9539e2699942c6a98c1461 Mon Sep 17 00:00:00 2001 From: Scott Beddall Date: Wed, 19 Jul 2023 12:11:21 -0700 Subject: [PATCH] add namespace given lack of system import --- .../Azure.Sdk.Tools.TestProxy.Tests/SanitizerTestExample.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 4acbf24152c..f87818cfdf4 100644 --- a/tools/test-proxy/Azure.Sdk.Tools.TestProxy.Tests/SanitizerTestExample.cs +++ b/tools/test-proxy/Azure.Sdk.Tools.TestProxy.Tests/SanitizerTestExample.cs @@ -61,7 +61,7 @@ public async Task ThisShouldWork() session.Session.Sanitize(registeredSanitizer); var newBody = Encoding.UTF8.GetString(session.Session.Entries[0].Response.Body); - Console.WriteLine(newBody); + System.Console.WriteLine(newBody); Assert.Contains("REDACTED", newBody); } }