Skip to content

Commit

Permalink
test: re-enable BatchParseTable test (#239)
Browse files Browse the repository at this point in the history
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly:
- [X] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/java-document-ai/issues/new/choose) before writing your code!  That way we can discuss the change, evaluate designs, and agree on the general idea
- [X] Ensure the tests and linter pass
- [X] Code coverage does not decrease (if any source code was changed)
- [X] Appropriate docs were updated (if necessary)

Fixes #207
  • Loading branch information
twinkle-kadia authored Nov 2, 2020
1 parent 58d439f commit 6b1f9e7
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,6 @@ public static void batchParseTableGcs(
Document.Page.Table table = page1.getTables(0);

System.out.println("Results from first table processed:");
System.out.println(
"First detected language: " + page1.getDetectedLanguages(0).getLanguageCode());
System.out.println("Header row:");

Document.Page.Table.TableRow headerRow = table.getHeaderRows(0);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ public void setUp() {

@Test
// https://github.com/googleapis/java-document-ai/issues/207
@Ignore
public void testBatchParseTable()
throws InterruptedException, ExecutionException, TimeoutException, IOException {
// parse the GCS invoice as a table.
Expand Down

0 comments on commit 6b1f9e7

Please sign in to comment.