summaryrefslogtreecommitdiff
path: root/test/lisp/auth-source-tests.el
diff options
context:
space:
mode:
authorTed Zlatanov <tzz@lifelogs.com>2017-08-18 21:14:17 -0400
committerTed Zlatanov <tzz@lifelogs.com>2017-08-18 21:14:17 -0400
commit10cde01c5e39f13287c64ec53adb191b8331a6cf (patch)
tree1e0eafe46d91a0cc3f842e3b87f051289f34d302 /test/lisp/auth-source-tests.el
parent9ff5edc71373df398557f2fe45cc80099cc45317 (diff)
downloademacs-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/auth-source-tests.el')
-rw-r--r--test/lisp/auth-source-tests.el2
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)