aboutsummaryrefslogtreecommitdiffstats
path: root/python/tests/test_grobid.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/tests/test_grobid.py')
-rw-r--r--python/tests/test_grobid.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/python/tests/test_grobid.py b/python/tests/test_grobid.py
index 24ea40e..36d90ef 100644
--- a/python/tests/test_grobid.py
+++ b/python/tests/test_grobid.py
@@ -15,7 +15,7 @@ with open('tests/files/23b29ea36382680716be08fc71aa81bd226e8a85.xml', 'rb') as f
@pytest.fixture
def grobid_client():
client = GrobidClient(
- host_url="http://localhost:8070",
+ host_url="http://dummy-grobid",
)
return client
@@ -24,7 +24,7 @@ def test_grobid_503(grobid_client):
status = b'{"status": "done broke due to 503"}'
responses.add(responses.POST,
- 'http://localhost:8070/api/processFulltextDocument', status=503,
+ 'http://dummy-grobid/api/processFulltextDocument', status=503,
body=status)
resp = grobid_client.process_fulltext(FAKE_PDF_BYTES)
@@ -39,7 +39,7 @@ def test_grobid_503(grobid_client):
def test_grobid_success(grobid_client):
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 = grobid_client.process_fulltext(FAKE_PDF_BYTES)
@@ -60,7 +60,7 @@ def test_grobid_worker_cdx(grobid_client, wayback_client):
worker = GrobidWorker(grobid_client, wayback_client, sink=sink)
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')
with open('tests/files/example.cdx', 'r') as cdx_file: