Skip to content

Commit 8e8a2f4

Browse files
committed
More comment
1 parent 79c054f commit 8e8a2f4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/test.el

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
;; You should have received a copy of the GNU General Public License
1818
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
1919

20-
;;; Commentary:
21-
2220
;;; Code:
2321

2422
(require 'ert)
@@ -108,7 +106,9 @@
108106
(should-error (sqlite3-execute-batch db "SELECT *" (lambda (&rest _args)) 'not-null))))
109107

110108
(ert-deftest regression-issue4 ()
111-
"Regression test https://github.com/syohex/emacs-sqlite3/issues/4"
109+
"Regression test https://github.com/syohex/emacs-sqlite3/issues/4
110+
111+
Don't raise error sqlite3-execute without callback argument."
112112
(let ((db (sqlite3-new)))
113113
(sqlite3-execute-batch db "CREATE TABLE foo(id integer primary key, editor text);")
114114
(sqlite3-execute-batch db "INSERT INTO foo(editor) values(?)" ["Emacs"])

0 commit comments

Comments
 (0)