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

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

[elpa] externals/compat bb25d50b6c 78/84: Fix test skip condition for 'c


From: ELPA Syncer
Subject: [elpa] externals/compat bb25d50b6c 78/84: Fix test skip condition for 'compat-ref-define-key'
Date: Tue, 3 Jan 2023 08:57:39 -0500 (EST)

branch: externals/compat
commit bb25d50b6c9f231a777616dbad10beeaea955922
Author: Philip Kaludercic <philipk@posteo.net>
Commit: Philip Kaludercic <philipk@posteo.net>

    Fix test skip condition for 'compat-ref-define-key'
    
    We want to test it from Emacs 29 onwards, not any version newer than
    Emacs 29.
---
 compat-tests.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/compat-tests.el b/compat-tests.el
index cee5e63deb..6cc5ed9c1a 100644
--- a/compat-tests.el
+++ b/compat-tests.el
@@ -2401,7 +2401,7 @@ being compared against."
 
 (ert-deftest compat-ref-define-key ()
   "Check if the real `define-key' handles the REMOVE argument."
-  (skip-unless (version<= "29" emacs-version))
+  (skip-unless (version< "29" emacs-version))
   (let ((map (make-sparse-keymap))
         (super (make-sparse-keymap)))
     (set-keymap-parent map super)



reply via email to

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