Skip to content

Commit 92de7f9

Browse files
committed
Refix the test again, as it was assuming too much about OS and, as a result, didn't work properly on Windows.
1 parent 70be423 commit 92de7f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,8 @@
175175
(ert-deftest eldev-test-project-c-disabled-dependencies-2 ()
176176
;; Dependencies are disabled, but we supply `load-path', so testing should work.
177177
(let* ((eldev--test-project "project-c")
178-
(process-environment `(,(format "EMACSLOADPATH=%s:%s:%s"
179-
(eldev--test-project-dir) (eldev--test-project-dir "dependency-a") (mapconcat #'identity load-path path-separator))
178+
(process-environment `(,(format "EMACSLOADPATH=%s"
179+
(mapconcat #'identity (append (list (eldev--test-project-dir) (eldev--test-project-dir "dependency-a")) load-path) path-separator))
180180
,@process-environment)))
181181
(eldev--test-delete-cache)
182182
(eldev--test-run nil ("--disable-dependencies" "test")

0 commit comments

Comments
 (0)