Skip to content

Commit

Permalink
fix small test problem
Browse files Browse the repository at this point in the history
  • Loading branch information
willronchetti committed Jul 13, 2020
1 parent 529475f commit 5253a1d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/encoded/tests/test_ingestion_listener.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import datetime
from uuid import uuid4
from ..ingestion_listener import IngestionQueueManager, run, IngestionListener
from ..util import gunzip_content
from .variant_fixtures import gene_workbook # noqa


Expand Down Expand Up @@ -117,7 +118,7 @@ def test_posting_vcf_processed_file(testapp, mocked_vcf_file):
file_meta = mocked_vcf_file['@graph'][0]
file_location = testapp.get(file_meta['href']).location # if you .follow() this you get 404 erroneously
content = requests.get(file_location).content
raw_vcf_file = IngestionListener.gunzip_content(content)
raw_vcf_file = gunzip_content(content)
assert "##fileformat=VCFv4.2" in raw_vcf_file


Expand Down

0 comments on commit 5253a1d

Please sign in to comment.