Skip to content

Commit

Permalink
Fix vision integration test to match latest error messages. (#404)
Browse files Browse the repository at this point in the history
  • Loading branch information
tswast authored and dpebot committed Nov 9, 2016
1 parent 4e0d47c commit e4f78ed
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public class DetectLandmarkIT {
appUnderTest.identifyLandmark(LANDMARK_URI + "/nonexistent.jpg", MAX_RESULTS);
fail("Expected IOException");
} catch (IOException expected) {
assertThat(expected.getMessage()).named("IOException message").contains("OBJECT_NOT_FOUND");
assertThat(expected.getMessage()).named("IOException message").contains("file");
}
}

Expand Down

0 comments on commit e4f78ed

Please sign in to comment.