Skip to content

Commit 09017b5

Browse files
committed
Added ignore for dlp tests due to known issues.
1 parent 059bb0e commit 09017b5

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

dlp/src/test/java/com/example/dlp/InspectIT.java

+2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
import java.io.PrintStream;
2525
import org.junit.After;
2626
import org.junit.Before;
27+
import org.junit.Ignore;
2728
import org.junit.Test;
2829
import org.junit.runner.RunWith;
2930
import org.junit.runners.JUnit4;
@@ -68,6 +69,7 @@ public void testTextFileInspectionReturnsInfoTypes() throws Exception {
6869
assertTrue(output.contains("EMAIL_ADDRESS"));
6970
}
7071

72+
@Ignore // TODO: b/69461298
7173
@Test
7274
public void testImageFileInspectionReturnsInfoTypes() throws Exception {
7375
ClassLoader classLoader = getClass().getClassLoader();

dlp/src/test/java/com/example/dlp/RedactIT.java

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
import java.io.PrintStream;
2626
import org.junit.After;
2727
import org.junit.Before;
28+
import org.junit.Ignore;
2829
import org.junit.Test;
2930
import org.junit.runner.RunWith;
3031
import org.junit.runners.JUnit4;
@@ -51,6 +52,7 @@ public void testInfoTypesInStringAreReplaced() throws Exception {
5152
assertTrue(output.contains("My phone number is _REDACTED_ and my email address is _REDACTED_"));
5253
}
5354

55+
@Ignore // TODO: b/69461298
5456
@Test
5557
public void testInfoTypesInImageAreReplaced() throws Exception {
5658
ClassLoader classLoader = getClass().getClassLoader();

0 commit comments

Comments
 (0)