fix: use tokio for I/O in an async function

This commit is contained in:
Michael Bolin
2026-01-07 15:04:12 -08:00
parent 54b290ec1d
commit c5ee3d4bc0

View File

@@ -69,7 +69,7 @@ async fn create_temp_git_repo() -> anyhow::Result<TempDir> {
async fn mock_get_task_with_fixture() -> anyhow::Result<GetTaskResponse> {
let fixture_path = Path::new(env!("CARGO_MANIFEST_DIR")).join("tests/task_turn_fixture.json");
let fixture_content = std::fs::read_to_string(fixture_path)?;
let fixture_content = tokio::fs::read_to_string(fixture_path).await?;
let response: GetTaskResponse = serde_json::from_str(&fixture_content)?;
Ok(response)
}