summaryrefslogtreecommitdiff
path: root/test/src/data-tests.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2022-09-08 16:08:42 -0400
committerStefan Monnier <monnier@iro.umontreal.ca>2022-09-08 16:08:42 -0400
commit112cb751419e4830a036ecabd6a799feb5977455 (patch)
treea026149c5153e34de8048903dbcd98546348f417 /test/src/data-tests.el
parent048b0fd0db1bae116ca8dfda461eb7de609d8b53 (diff)
downloademacs-112cb751419e4830a036ecabd6a799feb5977455.tar.gz
test: Remove redundant "" arg to `mapconcat`
* test/src/process-tests.el (process-test-stderr-filter): * test/src/print-tests.el (print-tests-continuous-numbering): * test/src/fns-tests.el (fns-tests-mapconcat): * test/src/data-tests.el (test-bool-vector-to-hex-string): * test/src/casefiddle-tests.el (casefiddle-tests-char-properties) (casefiddle-tests-case-table, casefiddle-tests-casing-character): * test/lisp/tabify-tests.el (tabify-tests--test-changes): * test/lisp/subr-tests.el (subr-tests-bug22027): * test/lisp/sort-tests.el (sort-tests-random-word): * test/lisp/net/hmac-md5-tests.el (hmac-md5-test-encode-string): * test/lisp/md4-tests.el (md4-tests-digest->hex): * test/lisp/emacs-lisp/cl-extra-tests.el (cl-extra-test-map): * test/lisp/dired-tests.el (dired-test-directory-files): * test/lisp/char-fold-tests.el (char-fold--random-word): * test/lisp/ansi-color-tests.el (ansi-color-incomplete-sequences-test): Remove redundant "" arg to `mapconcat`.
Diffstat (limited to 'test/src/data-tests.el')
-rw-r--r--test/src/data-tests.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/src/data-tests.el b/test/src/data-tests.el
index 0f84b2fb776..463a894d095 100644
--- a/test/src/data-tests.el
+++ b/test/src/data-tests.el
@@ -200,8 +200,7 @@ this is exactly representable and is greater than
nibbles)
(setf v (nthcdr 4 v)))
(mapconcat (lambda (n) (format "%X" n))
- (nreverse nibbles)
- "")))
+ (nreverse nibbles))))
(defun test-bool-vector-count-consecutive-tc (desc)
"Run a test case for `bool-vector-count-consecutive'.