From fc484b793f0f94ffe16f7fc521736cab1ab93c7e Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Fri, 8 Nov 2024 19:28:22 +0100 Subject: [PATCH] test: fix test vectors (#12411) --- crates/cli/commands/src/test_vectors/tables.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);