Skip to content

Commit

Permalink
test: fix env var
Browse files Browse the repository at this point in the history
Signed-off-by: simonsan <[email protected]>
  • Loading branch information
simonsan committed Mar 17, 2024
1 parent d341a96 commit 938a4c1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/workspace.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ fn fixtures_dir() -> PathBuf {
#[test]
fn test_workspace_patching_passes() -> TestResult<()> {
let fixture_path = fixtures_dir();
dbg!(&fixture_path);
let mut edit_runner = Command::new(env!("CARGO_BIN_EXE_CARGO-RHACK"));

let mut edit_runner = Command::new(env!("CARGO_BIN_EXE_cargo-rhack"));
_ = edit_runner
.stdin(Stdio::null())
.stdout(Stdio::inherit())
Expand All @@ -29,7 +29,7 @@ fn test_workspace_patching_passes() -> TestResult<()> {
// format of the table
// for now it panics if patch section can't be created

let mut undo_runner = Command::new(env!("CARGO_BIN_EXE_CARGO-RHACK"));
let mut undo_runner = Command::new(env!("CARGO_BIN_EXE_cargo-rhack"));
_ = undo_runner
.stdin(Stdio::null())
.stdout(Stdio::inherit())
Expand Down

0 comments on commit 938a4c1

Please sign in to comment.