diff --git a/crates/cli/commands/src/test_vectors/tables.rs b/crates/cli/commands/src/test_vectors/tables.rs index 22e54ea133..6b523c6edd 100644 --- a/crates/cli/commands/src/test_vectors/tables.rs +++ b/crates/cli/commands/src/test_vectors/tables.rs @@ -51,7 +51,7 @@ pub fn generate_vectors(mut tables: Vec) -> Result<()> { for table in tables { match table.as_str() { $( - stringify!($table_type$(<$($generic),+>)?) => { + stringify!($table_type) => { println!("Generating test vectors for {} <{}>.", stringify!($table_or_dup), tables::$table_type$(::<$($generic),+>)?::NAME); generate_vector!($table_type$(<$($generic),+>)?, $per_table, $table_or_dup);