summaryrefslogtreecommitdiff
path: root/testing/lisp/test-ob-ruby.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2024-05-19 17:19:51 -0400
committerStefan Monnier <monnier@iro.umontreal.ca>2024-05-19 17:20:34 -0400
commitdc62e4a1f943f7ca49b3075d9160dc19856fae7b (patch)
tree5bc10b2c9c0e87e5fff390edf614019bb193bd7a /testing/lisp/test-ob-ruby.el
parentf471f5b16c4ebf2f079779e5691e38aae9a6b705 (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-ruby.el')
-rw-r--r--testing/lisp/test-ob-ruby.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/lisp/test-ob-ruby.el b/testing/lisp/test-ob-ruby.el
index 2e4cd02..27f96f6 100644
--- a/testing/lisp/test-ob-ruby.el
+++ b/testing/lisp/test-ob-ruby.el
@@ -19,9 +19,9 @@
;;; Code:
(org-test-for-executable "ruby")
(unless (featurep 'ob-ruby)
- (signal 'missing-test-dependency "Support for Ruby code blocks"))
+ (signal 'missing-test-dependency '("Support for Ruby code blocks")))
(unless (featurep 'inf-ruby)
- (signal 'missing-test-dependency "inf-ruby"))
+ (signal 'missing-test-dependency '("inf-ruby")))
(ert-deftest test-ob-ruby/session-output-1 ()
(should (equal (org-test-with-temp-text "#+begin_src ruby :session org-test-ruby :results output