Skip to content

Commit

Permalink
Add a missing comma (#3669)
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman Donchenko authored Sep 17, 2021
1 parent c31ecf1 commit df75d5f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cvat/apps/dataset_manager/tests/test_rest_api_formats.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import os.path as osp
import os
import av
from django.http import response
import numpy as np
import random
import xml.etree.ElementTree as ET
Expand Down Expand Up @@ -545,7 +544,7 @@ def test_api_v1_dump_tag_annotations(self):
"format": dump_format_name,
"action": "download",
}
test_cases = ['all' 'first']
test_cases = ['all', 'first']
expected = {
self.admin: {'name': 'admin', 'code': status.HTTP_200_OK, 'create code': status.HTTP_201_CREATED,
'accept code': status.HTTP_202_ACCEPTED, 'file_exists': True},
Expand Down

0 comments on commit df75d5f

Please sign in to comment.