Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ityuany committed Jul 26, 2024
1 parent bf04a91 commit 7e9469e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion e2e/tests/snm_install_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@ fn test_install_node() -> Result<(), Box<dyn Error>> {

let original_path = var("PATH")?;

let new_path: String = format!("{}:{}", c.display().to_string(), original_path);
let new_path: String = format!(
"{}:{}",
c.join("tests").display().to_string(),
original_path
);

println!("New path: {}", new_path);

Expand Down

0 comments on commit 7e9469e

Please sign in to comment.