Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7133c96

Browse files
committed
Make DESCRIPTIONS a tuple.
1 parent fc57af8 commit 7133c96

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

system_tests/vision.py

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -222,9 +222,18 @@ def test_detect_faces_filename(self):
222222

223223

224224
class TestVisionClientLabel(BaseVisionTestCase):
225-
DESCRIPTIONS = ['car', 'vehicle', 'land vehicle', 'automotive design',
226-
'wheel', 'automobile make', 'luxury vehicle',
227-
'sports car', 'performance car', 'automotive exterior']
225+
DESCRIPTIONS = (
226+
'car',
227+
'vehicle',
228+
'land vehicle',
229+
'automotive design',
230+
'wheel',
231+
'automobile make',
232+
'luxury vehicle',
233+
'sports car',
234+
'performance car',
235+
'automotive exterior',
236+
)
228237

229238
def setUp(self):
230239
self.to_delete_by_case = []

0 commit comments

Comments
 (0)