diff options
| author | Stefan Monnier <monnier@iro.umontreal.ca> | 2024-05-19 17:19:51 -0400 |
|---|---|---|
| committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2024-05-19 17:20:34 -0400 |
| commit | dc62e4a1f943f7ca49b3075d9160dc19856fae7b (patch) | |
| tree | 5bc10b2c9c0e87e5fff390edf614019bb193bd7a /testing/lisp/test-ob-awk.el | |
| parent | f471f5b16c4ebf2f079779e5691e38aae9a6b705 (diff) | |
testing/lisp/*.el: Fix second arg to `signal`scratch/org
The second argument to `signal` should be a list, as explained in its
docstring. Fix `missing-test-dependency` signals accordingly.
Diffstat (limited to 'testing/lisp/test-ob-awk.el')
| -rw-r--r-- | testing/lisp/test-ob-awk.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/lisp/test-ob-awk.el b/testing/lisp/test-ob-awk.el index 874d2c0..b3a2a50 100644 --- a/testing/lisp/test-ob-awk.el +++ b/testing/lisp/test-ob-awk.el @@ -21,7 +21,7 @@ ;;; Code: (org-test-for-executable "awk") (unless (featurep 'ob-awk) - (signal 'missing-test-dependency "Support for Awk code blocks")) + (signal 'missing-test-dependency '("Support for Awk code blocks"))) (ert-deftest ob-awk/input-none () "Test with no input file" |
