Skip to content

Commit

Permalink
Remove unused name parameter in test
Browse files Browse the repository at this point in the history
  • Loading branch information
jschwe committed May 29, 2023
1 parent 39928cf commit d98c635
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/depfile.rs
Expand Up @@ -4,7 +4,7 @@ use std::process::Command;

static CBINDGEN_PATH: &str = env!("CARGO_BIN_EXE_cbindgen");

fn test_project(name: &str, project_path: &str) {
fn test_project(project_path: &str) {
let mut cmake_cmd = Command::new("cmake");
cmake_cmd.arg("--version");
cmake_cmd
Expand Down Expand Up @@ -100,7 +100,7 @@ macro_rules! test_file {
($test_function_name:ident, $name:expr, $file:tt) => {
#[test]
fn $test_function_name() {
test_project($name, $file);
test_project($file);
}
};
}
Expand Down

0 comments on commit d98c635

Please sign in to comment.