From 36e97d51cf373d8d27ba05c1a3cb108c268d8aab Mon Sep 17 00:00:00 2001 From: Adam Porter Date: Thu, 9 Jun 2022 18:10:39 -0500 Subject: [PATCH] Tests: Fix non-file-backed-buffer test Somehow a Unicode "RIGHT SINGLE QUOTATION MARK" replaced the ASCII apostrophe in this string, which broke the test. Weird! --- tests/test-org-ql.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test-org-ql.el b/tests/test-org-ql.el index 0b7f2bb..95988c0 100644 --- a/tests/test-org-ql.el +++ b/tests/test-org-ql.el @@ -2105,7 +2105,7 @@ with keyword arg NOW in PLIST." (it "Refuses to link to non-file-backed buffer" (expect (var-after-link-save-open 'org-ql-view-buffers-files link-buffer query :buffer link-buffer) - :to-throw 'user-error '("Views that search non-file-backed buffers can’t be linked to")))))) + :to-throw 'user-error '("Views that search non-file-backed buffers can't be linked to")))))) ;; MAYBE: Also test `org-ql-views', although I already know it works now. ;; (describe "org-ql-views")