Skip to content

Commit 17fb949

Browse files
committed
cannot find binref files fix
1 parent e6109ad commit 17fb949

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/endtoend_tests/test_run.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,9 @@ def test_binref_lz4_compression(built_image_name, dummy_tesseract_module, tmp_pa
231231
run_res.stdout, context={"base_dir": output_dir}
232232
)
233233
expected = dummy_tesseract_module.apply(
234-
dummy_tesseract_module.InputSchema.model_validate(example_inputs["inputs"])
234+
dummy_tesseract_module.InputSchema.model_validate(
235+
example_inputs["inputs"], context={"base_dir": input_dir}
236+
)
235237
)
236238
for field in expected.model_fields:
237239
assert np.array_equal(getattr(roundtrip, field), getattr(expected, field))

0 commit comments

Comments
 (0)