Skip to content

Commit b2ec721

Browse files
committed
test: Fix broken test in 'do-plumbing-link-bins'
1 parent 12411da commit b2ec721

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/do-plumbing-link-bins.bats

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,11 +163,12 @@ load 'util/init.sh'
163163
}
164164

165165
@test "does not symlink package itself as bin when linked with bpm link" {
166-
mkdir package
166+
mkdir -p 'package' 'username/package2'
167167

168168
# implicit call to do-plumbing-link-bins
169-
run do-link package username/package
169+
run do-link 'package' 'username/package2'
170170

171171
assert_success
172172
assert [ ! -e "$BPM_PREFIX/bin/package" ]
173+
assert [ ! -e "$BPM_PREFIX/bin/package2" ]
173174
}

0 commit comments

Comments
 (0)