Skip to content

Commit

Permalink
Fix failing beta tets (#1592)
Browse files Browse the repository at this point in the history
  • Loading branch information
nnegrey committed Sep 30, 2019
1 parent 632abc4 commit fd6037a
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@ public void testDetectHandwrittenOcr() throws Exception {

// Assert
String got = bout.toString();
assertThat(got).contains("Google Cloud Platform");
assertThat(got).contains("Google");
assertThat(got).contains("Cloud");
assertThat(got).contains("Platform");
}

@Test
Expand All @@ -97,7 +99,9 @@ public void testDetectHandwrittenOcrGcs() throws Exception {

// Assert
String got = bout.toString();
assertThat(got).contains("Google Cloud Platform");
assertThat(got).contains("Google");
assertThat(got).contains("Cloud");
assertThat(got).contains("Platform");
}

@Test
Expand Down

0 comments on commit fd6037a

Please sign in to comment.