Skip to content

Commit

Permalink
update unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
mbthornton-lbl committed Nov 22, 2024
1 parent 360fb57 commit f241a2f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tests/test_imports.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,10 @@ def test_gold_mapper_map_sequencing_data(gold_mapper):
exp_dobj_type = "Metagenome Raw Reads" # From the gold_import_files fixture
exp_nucleotide_sequencing_id = "nmdc:omprc-11-importT" # From the gold mapper fixture
exp_update = {
"collection": "data_generation_set",
"filter": {"id": exp_nucleotide_sequencing_id},
"update": {"$addToSet": {"has_output": [exp_dobj_id]}}
"update": "data_generation_set",
"updates": [
{"q": {"id": exp_nucleotide_sequencing_id}, "u": {"$addToSet": {"has_output": exp_dobj_id}}}
],
}
# Sequencing data does not get a URL
exp_url = None
Expand Down

0 comments on commit f241a2f

Please sign in to comment.