diff options
Diffstat (limited to 'test/lisp/tabify-tests.el')
-rw-r--r-- | test/lisp/tabify-tests.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lisp/tabify-tests.el b/test/lisp/tabify-tests.el index eaa3527df07..1c8940c30fe 100644 --- a/test/lisp/tabify-tests.el +++ b/test/lisp/tabify-tests.el @@ -27,9 +27,9 @@ (defun tabify-tests--test-changes (fun changes width) (with-temp-buffer (let ((tab-width width)) - (insert (mapconcat #'car changes "")) + (insert (mapconcat #'car changes)) (funcall fun (point-min) (point-max)) - (should (equal (buffer-string) (mapconcat #'cadr changes "")))))) + (should (equal (buffer-string) (mapconcat #'cadr changes)))))) (ert-deftest tabify-tests-untabify () (let ((changes '(("***\n" "***\n") |