This commit is contained in:
Victor Martinez 2025-01-27 12:47:44 +01:00
parent d9f3f14640
commit 906da3ca94

View file

@ -145,7 +145,7 @@ impl TestContext for GenericContext<u32> {
impl TestContext for GenericContext<String> {
fn setup() -> Self {
Self {
contents: format!("hello world"),
contents: "hello world".to_string(),
}
}
}