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

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

[nongnu] elpa/emacsql e6ab07e16b 140/427: Switch to a friendlier name.


From: ELPA Syncer
Subject: [nongnu] elpa/emacsql e6ab07e16b 140/427: Switch to a friendlier name.
Date: Tue, 13 Dec 2022 02:59:36 -0500 (EST)

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

    Switch to a friendlier name.
---
 emacsql-tests.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/emacsql-tests.el b/emacsql-tests.el
index c1f4542725..85a822fb62 100644
--- a/emacsql-tests.el
+++ b/emacsql-tests.el
@@ -168,9 +168,9 @@
       [:create-table person [(id integer :primary) name]]
       [:create-table likes ([(personid integer) color]
                             :foreign (personid person id :on-delete :cascade))]
-      [:replace :into person :values ([0 "Chris"] [1 "Jeff"])])
+      [:replace :into person :values ([0 "Chris"] [1 "Brian"])])
     (should (equal (emacsql db [:select * :from person :order-by id])
-                   '((0 "Chris") (1 "Jeff"))))
+                   '((0 "Chris") (1 "Brian"))))
     (emacsql db [:insert :into likes :values ([0 red] [0 yellow] [1 yellow])])
     (should (equal (emacsql db [:select * :from likes
                                         :order-by [personid color]])



reply via email to

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