Skip to content

Commit 29fbe30

Browse files
committed
fix: missing 'format' in error context msg
1 parent 6ed38df commit 29fbe30

File tree

1 file changed

+1
-1
lines changed
  • mithril-test-lab/mithril-end-to-end/src/stress_test

1 file changed

+1
-1
lines changed

mithril-test-lab/mithril-end-to-end/src/stress_test/wait.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ where
4848
}
4949
_ => request_first_list_item_with_expected_size::<I>(url, expected_size).await,
5050
},
51-
Err(err) => Err(anyhow!(err).context("Request to `{url}` failed")),
51+
Err(err) => Err(anyhow!(err).context(format!("Request to `{url}` failed"))),
5252
}
5353
}
5454

0 commit comments

Comments
 (0)