We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3a1fed commit 5d96949Copy full SHA for 5d96949
sdk/core/Azure.Core.TestFramework/src/TestRecording.cs
@@ -135,6 +135,11 @@ await _proxy.Client.AddUriSanitizerAsync(
135
await _proxy.Client.AddBodyKeySanitizerAsync(new BodyKeySanitizer(Sanitized) { JsonPath = path }, RecordingId);
136
}
137
138
+ foreach (BodyKeySanitizer sanitizer in _recordedTestBase.BodyKeySanitizers)
139
+ {
140
+ await _proxy.Client.AddBodyKeySanitizerAsync(sanitizer, RecordingId);
141
+ }
142
+
143
foreach (BodyRegexSanitizer sanitizer in _recordedTestBase.BodyRegexSanitizers)
144
{
145
await _proxy.Client.AddBodyRegexSanitizerAsync(sanitizer, RecordingId);
0 commit comments