Skip to content

Commit

Permalink
Update endpoint URLs for a couple backend tests
Browse files Browse the repository at this point in the history
  • Loading branch information
linearcombination committed Sep 27, 2024
1 parent d8445d0 commit d82f91b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/e2e/test_api_stet_docx.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
def test_en_es_419_stet_docx() -> None:
with TestClient(app=app, base_url=settings.api_test_url()) as client:
response = client.post(
"/documents_stet_docx",
"/stet/documents_stet_docx",
json={
"lang0_code": "en",
"lang1_code": "es-419",
Expand All @@ -25,7 +25,7 @@ def test_en_es_419_stet_docx() -> None:
def test_en_abu_stet_docx() -> None:
with TestClient(app=app, base_url=settings.api_test_url()) as client:
response = client.post(
"/documents_stet_docx",
"/stet/documents_stet_docx",
json={
"lang0_code": "en",
"lang1_code": "abu",
Expand Down

0 comments on commit d82f91b

Please sign in to comment.