Skip to content

Commit

Permalink
Fix the Vision system test. (#4050)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukesneeringer committed Sep 23, 2017
1 parent 05b4114 commit 3f3cdce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vision/tests/system_old.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,9 +200,9 @@ def _assert_logo(self, logo):
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, 940)
self.assertEqual(logo.bounds.vertices[2].y_coordinate, 302)
self.assertEqual(logo.bounds.vertices[2].y_coordinate, 243)
self.assertEqual(logo.bounds.vertices[3].x_coordinate, 40)
self.assertEqual(logo.bounds.vertices[3].y_coordinate, 302)
self.assertEqual(logo.bounds.vertices[3].y_coordinate, 243)
self.assertTrue(logo.score > 0.25)

def test_detect_logos_content(self):
Expand Down

0 comments on commit 3f3cdce

Please sign in to comment.