summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPhilipp Stephani <phst@google.com>2020-06-10 15:49:57 +0200
committerPhilipp Stephani <phst@google.com>2020-06-10 15:49:57 +0200
commitee8b2742d7f6d03daea37f1bac48c2746f7ca789 (patch)
treec184678fe35608bd584f169cf38249af970dc09d /test
parent00f4b7215c63b02171d0a5c48d3da802a202463e (diff)
downloademacs-ee8b2742d7f6d03daea37f1bac48c2746f7ca789.tar.gz
; * test/lisp/emacs-lisp/generator-tests.el: Checkdoc fixes
Diffstat (limited to 'test')
-rw-r--r--test/lisp/emacs-lisp/generator-tests.el7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/lisp/emacs-lisp/generator-tests.el b/test/lisp/emacs-lisp/generator-tests.el
index 0d325f1485a..bcfab201636 100644
--- a/test/lisp/emacs-lisp/generator-tests.el
+++ b/test/lisp/emacs-lisp/generator-tests.el
@@ -26,6 +26,8 @@
(require 'ert)
(require 'cl-lib)
+;;; Code:
+
(defun generator-list-subrs ()
(cl-loop for x being the symbols
when (and (fboundp x)
@@ -38,8 +40,7 @@
`cps-testcase' defines an ERT testcase called NAME that evaluates
BODY twice: once using ordinary `eval' and once using
lambda-generators. The test ensures that the two forms produce
-identical output.
-"
+identical output."
`(progn
(ert-deftest ,name ()
(should
@@ -302,3 +303,5 @@ identical output.
(lambda (it) (- it))
(1+ it)))))))
-2)))
+
+;;; generator-tests.el ends here