Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions libs/labelbox/tests/integration/test_bulk_assign.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
from labelbox.schema.task_assignment_status import TaskAssignmentStatus


def test_bulk_assign_data_rows(
configured_batch_project_with_label, project_based_user
):
def test_bulk_assign_data_rows(configured_batch_project_with_label, client):
project, _, data_row, _ = configured_batch_project_with_label
user = project_based_user
user = client.get_user()

result = project.bulk_assign_data_rows(
user_id=user.uid,
Expand All @@ -15,10 +13,10 @@ def test_bulk_assign_data_rows(


def test_bulk_assign_data_rows_with_allowed_statuses(
configured_batch_project_with_label, project_based_user
configured_batch_project_with_label, client
):
project, _, data_row, _ = configured_batch_project_with_label
user = project_based_user
user = client.get_user()

result = project.bulk_assign_data_rows(
user_id=user.uid,
Expand Down
Loading