Skip to content

Commit

Permalink
samples: Added ignore for dlp tests due to known issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
kurtisvg authored and chingor13 committed Aug 4, 2020
1 parent d824631 commit d8a887a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
import java.io.PrintStream;
import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
Expand Down Expand Up @@ -68,6 +69,7 @@ public void testTextFileInspectionReturnsInfoTypes() throws Exception {
assertTrue(output.contains("EMAIL_ADDRESS"));
}

@Ignore // TODO: b/69461298
@Test
public void testImageFileInspectionReturnsInfoTypes() throws Exception {
ClassLoader classLoader = getClass().getClassLoader();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
import java.io.PrintStream;
import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
Expand All @@ -51,6 +52,7 @@ public void testInfoTypesInStringAreReplaced() throws Exception {
assertTrue(output.contains("My phone number is _REDACTED_ and my email address is _REDACTED_"));
}

@Ignore // TODO: b/69461298
@Test
public void testInfoTypesInImageAreReplaced() throws Exception {
ClassLoader classLoader = getClass().getClassLoader();
Expand Down

0 comments on commit d8a887a

Please sign in to comment.