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

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

[nongnu] elpa/idris-mode 9866d6b299 2/7: Fix failing test due to new ver


From: ELPA Syncer
Subject: [nongnu] elpa/idris-mode 9866d6b299 2/7: Fix failing test due to new version of Xref
Date: Wed, 2 Aug 2023 07:01:03 -0400 (EDT)

branch: elpa/idris-mode
commit 9866d6b299436dbeb01f4fd2dea01d351e96057c
Author: Marek L <nospam.keram@gmail.com>
Commit: Marek L <nospam.keram@gmail.com>

    Fix failing test due to new version of Xref
    
    not adding space between line number and expression in *xref* buffer
---
 test/idris-xref-test.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/test/idris-xref-test.el b/test/idris-xref-test.el
index 7b8bcc4a88..ce54c3bd13 100644
--- a/test/idris-xref-test.el
+++ b/test/idris-xref-test.el
@@ -193,7 +193,8 @@
     (with-current-buffer "*xref*"
       ;; Assert
       (let ((str (buffer-substring-no-properties (point-min) (point-max))))
-        (should (string-match-p "11: AddClause.(-)" str))
+        (should (string-match-p "AddClause.(-)" str))
+        (should (string-match-p "11:" str))
         (should (string-match-p "AddClause.idr" str))
         (should (string-match-p "Prelude.Num.(-)" str))
         (should (string-match-p "prim__lte_Bits64" str)))



reply via email to

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