Skip to content
Snippets Groups Projects
Verified Commit c2a86a35 authored by Daniel Schultz's avatar Daniel Schultz :tm:
Browse files

Fix CI test

The test was written in a way that would work locally if you had
a specific S3 configuration, but failed in CI (or any other context with
a different set of values).
parent c8705b06
No related branches found
No related tags found
1 merge request!4Fix CI test
......@@ -20,7 +20,7 @@ def test_create_conversion_returns_result():
assert response.json() == {
"id": 1,
"result_url": None,
"source_url": "https://s3.us-west-002.backblazeb2.com/lfc-llm-pdf-dev/my-fake-file",
"source_url": f"{settings.S3_ENDPOINT}/{settings.S3_BUCKET}/my-fake-file",
"status": "pending",
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment