branch: elpa/emacsql commit 76a430032ef22de5d19fe82ad15b4e0371999d7c Author: Christopher Wellons <well...@nullprogram.com> Commit: Christopher Wellons <well...@nullprogram.com>
Fix up old test. --- emacsql-tests.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emacsql-tests.el b/emacsql-tests.el index 31a3921c5c..d1bcd2f41c 100644 --- a/emacsql-tests.el +++ b/emacsql-tests.el @@ -10,7 +10,7 @@ (should (string= (emacsql-escape "they're") "'they''re'"))) (ert-deftest emacsql-escape-value () - (should (string= (emacsql-escape-value 'foo) "foo")) + (should (string= (emacsql-escape-value 'foo) "'foo'")) (should (string= (emacsql-escape-value "foo") "'\"foo\"'")) (should (string= (emacsql-escape-value :foo) "':foo'")) (should (string= (emacsql-escape-value [1 2 3]) "'[1 2 3]'"))