fix test runner

This commit is contained in:
MCorange 2023-04-13 16:42:51 +03:00
parent b0bf09cfb2
commit 2d374d5d9d

View File

@ -150,7 +150,7 @@ struct Args {
input: String,
/// Compiler path
#[arg(long, short, default_value_t=String::from("./target/release/mclang"))]
#[arg(long, short, default_value_t=String::from("./target/release/mclangc"))]
compiler_path: String
@ -169,4 +169,4 @@ fn main() -> Result<()> {
}?;
Ok(())
}
}