Parcourir la source

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.
Ihor Radchenko il y a 2 ans
Parent
commit
3e86487755
2 fichiers modifiés avec 3 ajouts et 1 suppressions
  1. 2 1
      testing/lisp/test-ob-sql.el
  2. 1 0
      testing/lisp/test-ob-sqlite.el

+ 2 - 1
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

+ 1 - 0
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