fix: use tokio for I/O in an async function (#8868)

I thought this might solve a bug I'm working on, but it turned out to be
a red herring. Nevertheless, this seems like the right thing to do here.
This commit is contained in:
Michael Bolin
2026-01-07 16:36:23 -08:00
committed by GitHub
parent 54b290ec1d
commit ef8b8ebc94

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)
}