perf(tests): remove redundant format! in ef-tests run_only (#18909)

This commit is contained in:
Alvarez
2025-10-13 20:27:03 +02:00
committed by GitHub
parent 2041188744
commit 9b0a2c37b4

View File

@@ -93,7 +93,7 @@ macro_rules! blockchain_test {
.join("ethereum-tests")
.join("BlockchainTests");
BlockchainTests::new(suite_path).run_only(&format!("{}", stringify!($dir)));
BlockchainTests::new(suite_path).run_only(stringify!($dir));
}
};
}