diff options
| author | Ted Zlatanov | 2017-08-18 21:14:17 -0400 |
|---|---|---|
| committer | Ted Zlatanov | 2017-08-18 21:14:17 -0400 |
| commit | 10cde01c5e39f13287c64ec53adb191b8331a6cf (patch) | |
| tree | 1e0eafe46d91a0cc3f842e3b87f051289f34d302 | |
| parent | 9ff5edc71373df398557f2fe45cc80099cc45317 (diff) | |
| download | emacs-10cde01c5e39f13287c64ec53adb191b8331a6cf.tar.gz emacs-10cde01c5e39f13287c64ec53adb191b8331a6cf.zip | |
* test/lisp/auth-source-tests.el: Avoid `string-join' to be simple.
| -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 @@ | |||
| 270 | (netrc-file (make-temp-file | 270 | (netrc-file (make-temp-file |
| 271 | "auth-source-test" | 271 | "auth-source-test" |
| 272 | nil nil | 272 | nil nil |
| 273 | (string-join entries "\n"))) | 273 | (mapconcat 'identity entries "\n"))) |
| 274 | (auth-sources (list netrc-file)) | 274 | (auth-sources (list netrc-file)) |
| 275 | (auth-source-do-cache nil) | 275 | (auth-source-do-cache nil) |
| 276 | found found-as-string) | 276 | found found-as-string) |