Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion tests/integration/export_v2/test_legacy_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,6 @@ def test_export_data_rows(project: Project, dataset: Dataset):

data_rows = [dr.uid for dr in list(dataset.export_data_rows())]
batch = project.create_batch("batch test", data_rows)

result = list(batch.export_data_rows())
exported_data_rows = [dr.uid for dr in result]

Expand Down
2 changes: 0 additions & 2 deletions tests/integration/test_batch.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,8 +240,6 @@ def test_export_data_rows(project: Project, dataset: Dataset):

data_rows = [dr.uid for dr in list(dataset.export_data_rows())]
batch = project.create_batch("batch test", data_rows)
# allow time for catapult to sync changes to ES
time.sleep(5)
result = list(batch.export_data_rows())
exported_data_rows = [dr.uid for dr in result]

Expand Down
2 changes: 0 additions & 2 deletions tests/integration/test_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,6 @@ def test_create_batch_with_global_keys_sync(project: Project, data_rows):
global_keys = [dr.global_key for dr in data_rows]
batch_name = f'batch {uuid.uuid4()}'
batch = project.create_batch(batch_name, global_keys=global_keys)
# allow time for catapult to sync changes to ES
time.sleep(5)
# TODO: Move to export_v2
batch_data_rows = set(batch.export_data_rows())
assert batch_data_rows == set(data_rows)
Expand Down