summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Klein <roklein@roklein.de>2018-09-09 14:27:20 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2018-09-13 23:04:57 +0200
commit1e6ab19b2ad7a3f9867a1820baaa166e2ab959b0 (patch)
treecf3b941d60c0fe068f08542841aa752682ef6ab9
parent5fe16500348a084f2612f0118d434f7147c3ffeb (diff)
downloadorg-mode-1e6ab19b2ad7a3f9867a1820baaa166e2ab959b0.tar.gz
Fix tests for sqlite
- sqlite executable used by ob-sqlite is 'sqlite3' - require ob-sqlite for test
-rw-r--r--testing/lisp/test-ob-sqlite.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/testing/lisp/test-ob-sqlite.el b/testing/lisp/test-ob-sqlite.el
index f732515..0cf68fa 100644
--- a/testing/lisp/test-ob-sqlite.el
+++ b/testing/lisp/test-ob-sqlite.el
@@ -19,7 +19,8 @@
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Code:
-(org-test-for-executable "sqlite")
+(org-test-for-executable "sqlite3")
+(require 'ob-sqlite)
(unless (featurep 'ob-sqlite)
(signal 'missing-test-dependency "Support for sqlite code blocks"))