Skip to content

Commit e474a85

Browse files
committed
adjust
1 parent dd526e1 commit e474a85

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

libs/labelbox/tests/data/annotation_import/test_generic_data_types.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,14 @@ def validate_iso_format(date_string: str):
2828
"configured_project, media_type",
2929
[
3030
(MediaType.Audio, MediaType.Audio),
31+
(MediaType.Html, MediaType.Html),
32+
(MediaType.Image, MediaType.Image),
33+
(MediaType.Text, MediaType.Text),
34+
(MediaType.Video, MediaType.Video),
35+
(MediaType.Conversational, MediaType.Conversational),
36+
(MediaType.Document, MediaType.Document),
37+
(OntologyKind.ResponseCreation, OntologyKind.ResponseCreation),
38+
(OntologyKind.ModelEvaluation, OntologyKind.ModelEvaluation),
3139
],
3240
indirect=["configured_project"],
3341
)
@@ -52,6 +60,7 @@ def test_import_media_types(
5260
annotations_ndjson,
5361
)
5462
label_import.wait_until_done()
63+
# comment
5564

5665
assert label_import.state == AnnotationImportState.FINISHED
5766
assert len(label_import.errors) == 0
@@ -61,7 +70,6 @@ def test_import_media_types(
6170
result = export_v2_test_helpers.run_project_export_v2_task(
6271
configured_project
6372
)
64-
print("test")
6573

6674
assert result
6775

0 commit comments

Comments
 (0)