From af2ffc0cea2d03a86f3ecf6c8dd0bd106a19b851 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Tue, 14 Jan 2020 17:15:01 -0800 Subject: tests: don't use localhost as a responses mock host --- python/tests/test_ingest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python/tests/test_ingest.py') diff --git a/python/tests/test_ingest.py b/python/tests/test_ingest.py index f5599e9..5c2a621 100644 --- a/python/tests/test_ingest.py +++ b/python/tests/test_ingest.py @@ -12,7 +12,7 @@ from test_grobid import REAL_TEI_XML @pytest.fixture def ingest_worker(wayback_client, spn_client): grobid_client = GrobidClient( - host_url="http://localhost:8070", + host_url="http://dummy-grobid", ) worker = IngestFileWorker( wayback_client=wayback_client, @@ -66,7 +66,7 @@ def test_ingest_success(ingest_worker_pdf): headers={"X-Archive-Src": "liveweb-whatever.warc.gz"}, body=pdf_bytes) responses.add(responses.POST, - 'http://localhost:8070/api/processFulltextDocument', status=200, + 'http://dummy-grobid/api/processFulltextDocument', status=200, body=REAL_TEI_XML, content_type='text/xml') resp = ingest_worker_pdf.process(request) -- cgit v1.2.3