From b9a90ebec31d97f3838ef51597c3c12bf54a81a3 Mon Sep 17 00:00:00 2001 From: Manuel Raimann Date: Sat, 31 Jan 2026 11:56:31 +0100 Subject: [PATCH] Format --- tests/integration.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration.rs b/tests/integration.rs index e800e1f..00063db 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -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"));