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:
parent
54b290ec1d
commit
ef8b8ebc94
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue