Skip to content

Commit 6ebcf1f

Browse files
authored
Update test/babashka/bbin/scripts_test.clj
1 parent 0dd8723 commit 6ebcf1f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test/babashka/bbin/scripts_test.clj

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,11 @@
3232
home-gitlibs (str (fs/path (fs/home) ".gitlibs") "/" expected-suffix)
3333
custom-gitlibs (str "/custom/gitlibs/" expected-suffix)]
3434
(testing "uses ~/.gitlibs when GITLIBS is empty"
35-
(is (= (str (common/local-lib-path script-deps "")))))
35+
(is (= home-gitlibs
36+
(str (common/local-lib-path script-deps "")))))
3637
(testing "uses custom path when GITLIBS is set"
37-
(is (= (str (common/local-lib-path script-deps "/custom/gitlibs")))))))
38+
(is (= custom-gitlibs
39+
(str (common/local-lib-path script-deps "/custom/gitlibs")))))))
3840

3941
(deftest uninstall-test
4042
(testing "uninstall foo"

0 commit comments

Comments
 (0)