Fix incorrect assertion in test_env_launcher test (#1368)

This appears to be a copy-paste error in #1079, since the assertion is
already is currently duplicated on line 26.
This commit is contained in:
David Freese 2022-05-29 15:35:55 -07:00 committed by GitHub
parent 4661093fb1
commit 3a099bfa97
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -28,6 +28,6 @@ fn run() {
// Ensure `execpath` expanded variables map to real files and have absolute paths
let hello_world_src = std::path::PathBuf::from(std::env::var("HELLO_WORLD_SRC").unwrap());
assert!(!hello_world_bin.is_absolute());
assert!(!hello_world_src.is_absolute());
assert!(hello_world_src.exists());
}