Add built-in var to refer to pipeline values (#3661)

This commit is contained in:
JT
2021-06-21 12:31:01 +12:00
committed by GitHub
parent 21a3ceee92
commit 318d13ed58
7 changed files with 203 additions and 41 deletions

View File

@ -492,7 +492,7 @@ mod tests {
std::matches!(expanded, Cow::Borrowed(_)),
"No PathBuf should be needed here (unecessary allocation)"
);
assert!(&expanded == Path::new(s));
assert!(expanded == Path::new(s));
}
#[test]