Fix hardcoded absolute paths in book upload tests

The Darwin epub test cases used absolute paths. I hadn't notices until switching machines, whcih caused errors in the test harness. Changed to relative paths to be consistent with other test cases.
This commit is contained in:
2026-03-07 11:35:30 -05:00
parent 766fca2c39
commit a19c944b6e

View File

@@ -28,7 +28,7 @@ from pathlib import Path
), ),
( (
Path( Path(
"/home/patrick/projects/chitai-api/tests/data_files/On The Origin of Species By Means of Natural Selection - Charles Darwin.epub" "tests/data_files/On The Origin of Species By Means of Natural Selection - Charles Darwin.epub"
), ),
2, 2,
"On the Origin of Species By Means of Natural Selection / Or, the Preservation of Favoured Races in the Struggle for Life", "On the Origin of Species By Means of Natural Selection / Or, the Preservation of Favoured Races in the Struggle for Life",
@@ -107,7 +107,7 @@ async def test_upload_book_without_data(
), ),
( (
Path( Path(
"/home/patrick/projects/chitai-api/tests/data_files/On The Origin of Species By Means of Natural Selection - Charles Darwin.epub" "tests/data_files/On The Origin of Species By Means of Natural Selection - Charles Darwin.epub"
), ),
2, 2,
"On the Origin of Species By Means of Natural Selection", "On the Origin of Species By Means of Natural Selection",