branch: master
commit 4171364ab3cdb21eabb45657a8d20bd85f3ecc9b
Author: Oleh Krehel <[email protected]>
Commit: Oleh Krehel <[email protected]>

    ivy-test.el (counsel-find-file-with-dotfiles): Disable for emacs27
---
 ivy-test.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/ivy-test.el b/ivy-test.el
index 72b595f..4091738 100644
--- a/ivy-test.el
+++ b/ivy-test.el
@@ -1106,7 +1106,8 @@ a buffer visiting a file."
            "test/find-file/files-with-dollar/foo$")))
 
 (ert-deftest counsel-find-file-with-dotfiles ()
-  (unless (version< emacs-version "26.1")
+  (when (and (version<= emacs-version "26.2")
+             (not (version< emacs-version "26.1")))
     (should (string=
              (file-relative-name
               (ivy-with '(counsel-find-file) "f C-m"

Reply via email to