diff options
Diffstat (limited to 'test/src')
| -rw-r--r-- | test/src/emacs-module-tests.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/src/emacs-module-tests.el b/test/src/emacs-module-tests.el index 8b6328d35af..9ef5a47b159 100644 --- a/test/src/emacs-module-tests.el +++ b/test/src/emacs-module-tests.el | |||
| @@ -138,8 +138,9 @@ changes." | |||
| 138 | 138 | ||
| 139 | (defun multiply-string (s n) | 139 | (defun multiply-string (s n) |
| 140 | (let ((res "")) | 140 | (let ((res "")) |
| 141 | (dotimes (i n res) | 141 | (dotimes (i n) |
| 142 | (setq res (concat res s))))) | 142 | (setq res (concat res s))) |
| 143 | res)) | ||
| 143 | 144 | ||
| 144 | (ert-deftest mod-test-globref-make-test () | 145 | (ert-deftest mod-test-globref-make-test () |
| 145 | (let ((mod-str (mod-test-globref-make)) | 146 | (let ((mod-str (mod-test-globref-make)) |