Skip to content

Commit c42d021

Browse files
author
Val Brodsky
committed
Fixed incorrect task test
1 parent e285a18 commit c42d021

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/labelbox/tests/integration/test_task.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def test_task_success_label_export(client, configured_project_with_label):
6767
user = client.get_user()
6868
task = None
6969
for task in user.created_tasks():
70-
if task.name != 'JSON Import' and task.type != 'adv-upsert-data-rows':
70+
if task.name != 'JSON Import' and task.type != 'adv-upsert-data-rows' and task.type != 'mea-label-registration':
7171
break
7272

7373
with pytest.raises(ValueError) as exc_info:

0 commit comments

Comments
 (0)