1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-09 05:01:02 -08:00

* 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
No known key found for this signature in database
GPG key ID: 11F23D0A4E4B9DEE

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)