mirror of https://github.com/bazelbuild/rules_rust
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:
parent
4661093fb1
commit
3a099bfa97
|
@ -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());
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue