summaryrefslogtreecommitdiffstats
path: root/library/core/tests/any.rs
diff options
context:
space:
mode:
Diffstat (limited to 'library/core/tests/any.rs')
-rw-r--r--library/core/tests/any.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/tests/any.rs b/library/core/tests/any.rs
index 8ed0c8880..9538b8139 100644
--- a/library/core/tests/any.rs
+++ b/library/core/tests/any.rs
@@ -142,7 +142,7 @@ impl Provider for SomeConcreteType {
demand
.provide_ref::<String>(&self.some_string)
.provide_ref::<str>(&self.some_string)
- .provide_value::<String>(|| "bye".to_owned());
+ .provide_value_with::<String>(|| "bye".to_owned());
}
}