That stopped the `make test' cold with a backtrace. Bug fix attached.
>From 0d7f1b77dfa5cf3f755ea5d3b08943ec696f8bbf Mon Sep 17 00:00:00 2001 From: Nick Dokos <ndo...@redhat.com> Date: Tue, 15 Mar 2022 12:33:52 -0400 Subject: [PATCH] test-ob-octave: Add missing `provide'
--- testing/lisp/test-ob-octave.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/testing/lisp/test-ob-octave.el b/testing/lisp/test-ob-octave.el index 7e20add99..6113b40f3 100644 --- a/testing/lisp/test-ob-octave.el +++ b/testing/lisp/test-ob-octave.el @@ -63,3 +63,5 @@ (org-test-at-id "cc2d82bb-2ac0-45be-a0c8-d1463b86a3ba" (org-babel-next-src-block 5) (should (equal nil (org-babel-execute-src-block))))) + +(provide 'test-ob-octave) -- 2.34.1
-- Nick "There are only two hard problems in computer science: cache invalidation, naming things, and off-by-one errors." -Martin Fowler