From 380a3233bf4efd6edfc19003111497aa6e903b74 Mon Sep 17 00:00:00 2001 From: Sebastian Holmin Date: Tue, 21 Jan 2025 09:53:57 +0100 Subject: [PATCH] Fix debug print --- test/test-manager/src/tests/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test-manager/src/tests/mod.rs b/test/test-manager/src/tests/mod.rs index 02ab7938fa0a..dfa899ecfca3 100644 --- a/test/test-manager/src/tests/mod.rs +++ b/test/test-manager/src/tests/mod.rs @@ -200,7 +200,7 @@ pub async fn set_test_location( set_location(mullvad_client, LocationConstraint::CustomList { list_id }) .await - .with_context(|| format!("Failed to set location to custom list with ID '{list_id}'"))?; + .with_context(|| format!("Failed to set location to custom list with ID '{list_id:?}'"))?; Ok(()) }