Skip to content

Commit

Permalink
CLI smoke testing: Remove TEMP uncomment.
Browse files Browse the repository at this point in the history
  • Loading branch information
gibbz00 committed Feb 3, 2024
1 parent 2fbe871 commit e1cb9da
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions crates/cli/tests/smoke/command_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
}
Expand Down

0 comments on commit e1cb9da

Please sign in to comment.