diff options
author | Ted Zlatanov <tzz@lifelogs.com> | 2017-08-18 21:14:17 -0400 |
---|---|---|
committer | Ted Zlatanov <tzz@lifelogs.com> | 2017-08-18 21:14:17 -0400 |
commit | 10cde01c5e39f13287c64ec53adb191b8331a6cf (patch) | |
tree | 1e0eafe46d91a0cc3f842e3b87f051289f34d302 /test/lisp | |
parent | 9ff5edc71373df398557f2fe45cc80099cc45317 (diff) | |
download | emacs-10cde01c5e39f13287c64ec53adb191b8331a6cf.tar.gz emacs-10cde01c5e39f13287c64ec53adb191b8331a6cf.tar.bz2 emacs-10cde01c5e39f13287c64ec53adb191b8331a6cf.zip |
* test/lisp/auth-source-tests.el: Avoid `string-join' to be simple.
Diffstat (limited to 'test/lisp')
-rw-r--r-- | test/lisp/auth-source-tests.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lisp/auth-source-tests.el b/test/lisp/auth-source-tests.el index 99d830c6b06..f35c4009535 100644 --- a/test/lisp/auth-source-tests.el +++ b/test/lisp/auth-source-tests.el @@ -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) |