From 10cde01c5e39f13287c64ec53adb191b8331a6cf Mon Sep 17 00:00:00 2001 From: Ted Zlatanov Date: Fri, 18 Aug 2017 21:14:17 -0400 Subject: [PATCH] * test/lisp/auth-source-tests.el: Avoid `string-join' to be simple. --- test/lisp/auth-source-tests.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.2