There was an error while loading. Please reload this page.
1 parent 0504e2d commit f66a30bCopy full SHA for f66a30b
1 file changed
test/AWS.Bedrock.MAG.IntegrationTests/SanitizerIntegrationTests.cs
@@ -23,11 +23,6 @@ private BedrockGuardrailsSanitizer Sanitizer() =>
23
[Fact]
24
public async Task Redacts_an_ssn_in_tool_output()
25
{
26
- if (_fx.SkipReason is { } reason)
27
- {
28
- Assert.Skip(reason);
29
- }
30
-
31
var result = await Sanitizer().SanitizeAsync(GuardrailFixture.SsnSample);
32
33
Assert.True(result.Modified);
@@ -38,11 +33,6 @@ public async Task Redacts_an_ssn_in_tool_output()
38
39
34
public async Task Leaves_clean_output_unchanged()
40
35
41
42
43
44
45
46
36
var result = await Sanitizer().SanitizeAsync("The build finished successfully.");
47
37
48
Assert.False(result.Modified);
0 commit comments