Skip to content

Commit

Permalink
Fix a Vision system test that changed. (#3971)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukesneeringer committed Sep 15, 2017
1 parent 3100238 commit 8b3635c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/google-cloud-vision/tests/system_old.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,9 +197,9 @@ def _assert_logo(self, logo):
self.assertEqual(len(logo.bounds.vertices), 4)
self.assertEqual(logo.bounds.vertices[0].x_coordinate, 40)
self.assertEqual(logo.bounds.vertices[0].y_coordinate, 40)
self.assertEqual(logo.bounds.vertices[1].x_coordinate, 959)
self.assertEqual(logo.bounds.vertices[1].x_coordinate, 940)
self.assertEqual(logo.bounds.vertices[1].y_coordinate, 40)
self.assertEqual(logo.bounds.vertices[2].x_coordinate, 959)
self.assertEqual(logo.bounds.vertices[2].x_coordinate, 940)
self.assertEqual(logo.bounds.vertices[2].y_coordinate, 302)
self.assertEqual(logo.bounds.vertices[3].x_coordinate, 40)
self.assertEqual(logo.bounds.vertices[3].y_coordinate, 302)
Expand Down

0 comments on commit 8b3635c

Please sign in to comment.