Skip to content

Commit

Permalink
Make DESCRIPTIONS a tuple.
Browse files Browse the repository at this point in the history
  • Loading branch information
daspecster committed Dec 7, 2016
1 parent fc57af8 commit 7133c96
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions system_tests/vision.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,9 +222,18 @@ def test_detect_faces_filename(self):


class TestVisionClientLabel(BaseVisionTestCase):
DESCRIPTIONS = ['car', 'vehicle', 'land vehicle', 'automotive design',
'wheel', 'automobile make', 'luxury vehicle',
'sports car', 'performance car', 'automotive exterior']
DESCRIPTIONS = (
'car',
'vehicle',
'land vehicle',
'automotive design',
'wheel',
'automobile make',
'luxury vehicle',
'sports car',
'performance car',
'automotive exterior',
)

def setUp(self):
self.to_delete_by_case = []
Expand Down

0 comments on commit 7133c96

Please sign in to comment.