aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorPhilipp Stephani2020-04-12 18:08:04 +0200
committerPhilipp Stephani2020-04-12 18:08:35 +0200
commit900947fbe8b202ce2ae15e87ef377ca27da73ec9 (patch)
tree80ced62ac94d614f1bc4406690f3015e15ddc013 /test
parentaed427ece5c6e78633e08fd599d0cadeeb3d8d58 (diff)
downloademacs-900947fbe8b202ce2ae15e87ef377ca27da73ec9.tar.gz
emacs-900947fbe8b202ce2ae15e87ef377ca27da73ec9.zip
; * test/src/callproc-tests.el: Fix checkdoc errors.
Diffstat (limited to 'test')
-rw-r--r--test/src/callproc-tests.el7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/src/callproc-tests.el b/test/src/callproc-tests.el
index 39d2014488a..bf7d47b27f1 100644
--- a/test/src/callproc-tests.el
+++ b/test/src/callproc-tests.el
@@ -17,6 +17,11 @@
17;; You should have received a copy of the GNU General Public License 17;; You should have received a copy of the GNU General Public License
18;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. 18;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
19 19
20
21;;; Commentary:
22;;
23;; Unit tests for src/callproc.c.
24
20;;; Code: 25;;; Code:
21 26
22(require 'ert) 27(require 'ert)
@@ -60,3 +65,5 @@
60 (call-process "c:/nul.exe") 65 (call-process "c:/nul.exe")
61 (error :got-error)))) 66 (error :got-error))))
62 (should have-called-debugger))) 67 (should have-called-debugger)))
68
69;;; callproc-tests.el ends here