We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d42541 commit 74268e2Copy full SHA for 74268e2
1 file changed
tests/e2e/dags/pipelines/test_notice_processor_pipelines.py
@@ -33,7 +33,7 @@ def test_notice_processor_pipelines(fake_mongodb_client):
33
notice_repository.update(notice=notice)
34
result_list = notices_batch_distillation_pipeline(notice_ids=[notice_id], mongodb_client=fake_mongodb_client)
35
assert len(result_list) == 1
36
- notice_id = result_list[0]
+ notice_id = result_list[0].notice.ted_id
37
notice = notice_repository.get(reference=notice_id)
38
pipelines = [notice_validation_pipeline, notice_package_pipeline, notice_publish_pipeline]
39
notice_states = [NoticeStatus.DISTILLED, NoticeStatus.VALIDATED, NoticeStatus.PACKAGED, NoticeStatus.PUBLISHED]
0 commit comments