From 3ff67e38dc281a3b23ef03c1f739bc03999b99a0 Mon Sep 17 00:00:00 2001 From: wborgeaud Date: Mon, 11 Jul 2022 14:16:58 +0200 Subject: [PATCH] Minor --- evm/src/cross_table_lookup.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/evm/src/cross_table_lookup.rs b/evm/src/cross_table_lookup.rs index b243d760..049821e0 100644 --- a/evm/src/cross_table_lookup.rs +++ b/evm/src/cross_table_lookup.rs @@ -757,9 +757,9 @@ pub(crate) mod testutils { if looking_locations.len() != looked_locations.len() { panic!( "CTL #{ctl_index}:\n\ - Row {row:?} is present {l0} times in the looking tables, but {l1} times in the looked table.\n\ - Looking locations (Table, Row index): {looking_locations:?}.\n\ - Looked locations (Table, Row index): {looked_locations:?}.", + Row {row:?} is present {l0} times in the looking tables, but {l1} times in the looked table.\n\ + Looking locations (Table, Row index): {looking_locations:?}.\n\ + Looked locations (Table, Row index): {looked_locations:?}.", l0 = looking_locations.len(), l1 = looked_locations.len(), );