Make shellcheck happier

This commit is contained in:
Michael Wolf
2023-09-30 14:57:13 -06:00
parent d6755810e4
commit 7ae2eed832

View File

@@ -44,7 +44,7 @@ testResolveSymlink001() {
link="$d2"/link
ln -s "$d1"/target "$link"
resolved=$(resolve_symlink $link)
resolved=$(resolve_symlink "$link")
assertEquals "$expected" "$resolved"
}
@@ -69,7 +69,7 @@ testWfRoot() {
git init >/dev/null 2>&1
"$DIR"/../install.sh 2>&2 >/dev/null
got=$(wf_root $(pwd))
got=$(wf_root "$(pwd)")
assertEquals "$expected" "$got"
}