From 3e86487755e6e023625ad3ddac105b93759e63ec Mon Sep 17 00:00:00 2001 From: Ihor Radchenko Date: Thu, 13 Oct 2022 18:30:44 +0800 Subject: [PATCH] testing/lisp: Add missing `provide' * testing/lisp/test-ob-sql.el (test-ob-sql): * testing/lisp/test-ob-sqlite.el (test-ob-sqlite): Add missing provide and use the correct file name in the comments. --- testing/lisp/test-ob-sql.el | 3 ++- testing/lisp/test-ob-sqlite.el | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/testing/lisp/test-ob-sql.el b/testing/lisp/test-ob-sql.el index 659071121..919741571 100644 --- a/testing/lisp/test-ob-sql.el +++ b/testing/lisp/test-ob-sql.el @@ -377,4 +377,5 @@ select * from dummy; #+end_src")) -;;; test-ob-sqlite.el ends here +(provide 'test-ob-sql) +;;; test-ob-sql.el ends here diff --git a/testing/lisp/test-ob-sqlite.el b/testing/lisp/test-ob-sqlite.el index 5c418e304..72d75c9b7 100644 --- a/testing/lisp/test-ob-sqlite.el +++ b/testing/lisp/test-ob-sqlite.el @@ -42,4 +42,5 @@ (org-babel-next-src-block) (org-babel-execute-src-block))))) +(provide 'test-ob-sqlite) ;;; test-ob-sqlite.el ends here