* test/lisp/auth-source-tests.el: Avoid `string-join' to be simple.

This commit is contained in:
Ted Zlatanov
2017-08-18 21:14:17 -04:00
parent 9ff5edc713
commit 10cde01c5e

View File

@@ -270,7 +270,7 @@
(netrc-file (make-temp-file
"auth-source-test"
nil nil
(string-join entries "\n")))
(mapconcat 'identity entries "\n")))
(auth-sources (list netrc-file))
(auth-source-do-cache nil)
found found-as-string)