From c97ea4fce08e7aa4af178590e78da2646e969ff1 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Wed, 10 Aug 2022 10:42:00 +0100 Subject: [PATCH] tor-chanmgr tests: Fix a minimal-versions failure (actually) --- crates/tor-chanmgr/src/mgr/map/padding_test.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/tor-chanmgr/src/mgr/map/padding_test.rs b/crates/tor-chanmgr/src/mgr/map/padding_test.rs index 584db5a49..aca9b9579 100644 --- a/crates/tor-chanmgr/src/mgr/map/padding_test.rs +++ b/crates/tor-chanmgr/src/mgr/map/padding_test.rs @@ -190,7 +190,7 @@ impl CaseContext { eprintln!("{:#?}", &messages); for (i, (got, exp)) in zip_eq(messages, expected).enumerate() { - eprintln!("{i} {:?} {:?}", got, exp); + eprintln!("{} {:?} {:?}", i, got, exp); let got: ChannelPaddingInstructionsUpdates = match got { Ok(CtrlMsg::ConfigUpdate(u)) => (*u).clone(), _ => panic!("wrong message {:?}", got),