emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/emacsql 8fa1ca451c 238/427: Fix schema mistake in unit tes


From: ELPA Syncer
Subject: [nongnu] elpa/emacsql 8fa1ca451c 238/427: Fix schema mistake in unit test.
Date: Tue, 13 Dec 2022 02:59:47 -0500 (EST)

branch: elpa/emacsql
commit 8fa1ca451cd1c91e003c6f6ede7cd181f93c5995
Author: Christopher Wellons <wellons@nullprogram.com>
Commit: Christopher Wellons <wellons@nullprogram.com>

    Fix schema mistake in unit test.
---
 emacsql-tests.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/emacsql-tests.el b/emacsql-tests.el
index 2a5b072a0b..220f7eaea2 100644
--- a/emacsql-tests.el
+++ b/emacsql-tests.el
@@ -267,8 +267,8 @@
   (let ((emacsql-global-timeout 4))
     (dolist (factory emacsql-tests-connection-factories)
       (emacsql-with-connection (db (funcall (cdr factory)))
-        (emacsql db [:create-temporary-table test-table [x]])
-        (emacsql db [:insert :into test-table :values ([""] [\])])
+        (emacsql db [:create-temporary-table test-table ([x])])
+        (emacsql db [:insert-into test-table :values ([""] [\])])
         (should (process-live-p (emacsql-process db)))
         (should (equal (emacsql db [:select * :from test-table])
                        '(("") (\))))))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]