test-ob-sqlite.el: Don't load ob-sqlite

* testing/lisp/test-ob-sqlite.el (ob-sqlite): Don't explicitly load
ob-sqlite.

ob-LANG tests check whether the corresponding ob- feature is
available, signaling missing-test-dependency if it's not.  Which ob-
libraries are loaded/tested can then controlled by the Makefile
variable BTEST_OB_LANGUAGES.

test-ob-sqlite.el, however, requires ob-sqlite before its featurep
call, unconditionally loading ob-sqlite and breaking the above setup.
This commit is contained in:
Kyle Meyer 2021-03-16 23:47:48 -04:00
parent be35212683
commit 4de1e053d1
1 changed files with 0 additions and 1 deletions

View File

@ -20,7 +20,6 @@
;;; Code:
(org-test-for-executable "sqlite3")
(require 'ob-sqlite)
(unless (featurep 'ob-sqlite)
(signal 'missing-test-dependency "Support for sqlite code blocks"))