This commit is contained in:
Manuel Raimann
2026-01-31 11:56:31 +01:00
parent 24e921b7b9
commit b9a90ebec3
+1 -1
View File
@@ -886,7 +886,7 @@ fn test_trial_debug_format() {
let mut trial = Trial::new(42);
trial.suggest_float("x", 0.0, 1.0).unwrap();
let debug_str = format!("{:?}", trial);
let debug_str = format!("{trial:?}");
// Should contain trial id and other fields
assert!(debug_str.contains("Trial"));