diff --git a/crates/cli/tests/smoke/command_utils.rs b/crates/cli/tests/smoke/command_utils.rs index 130cdaf..4d334d8 100644 --- a/crates/cli/tests/smoke/command_utils.rs +++ b/crates/cli/tests/smoke/command_utils.rs @@ -20,12 +20,9 @@ impl PackageCommand for Command { bin_dir.pop(); } - // TEMP: Checking if this fixes CI - bin_dir.join(env!("CARGO_BIN_EXE_rops")) - - // let bin_path = bin_dir.join(env!("CARGO_PKG_NAME")); - // assert!(bin_path.is_file(), "function not called from within an integration test"); - // bin_path + let bin_path = bin_dir.join(env!("CARGO_BIN_EXE_rops")); + assert!(bin_path.is_file(), "function not called from within an integration test"); + bin_path } } }