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

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

[elpa] externals/compat 59cd42a912 60/84: Generate test names without do


From: ELPA Syncer
Subject: [elpa] externals/compat 59cd42a912 60/84: Generate test names without double-dashes
Date: Tue, 3 Jan 2023 08:57:36 -0500 (EST)

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

    Generate test names without double-dashes
---
 compat-tests.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/compat-tests.el b/compat-tests.el
index 265b8a26bf..5c5c4f2df0 100644
--- a/compat-tests.el
+++ b/compat-tests.el
@@ -97,8 +97,8 @@ being compared against."
 COMPAT is the name of the compatibility function the behaviour is
 being compared against."
   (lambda (error-spec &rest args)
-    (let ((real-test (intern (format "%s-%04d-actual/expect" compat 
compat-test-counter)))
-          (comp-test (intern (format "%s-%04d-compat/expect" compat 
compat-test-counter)))
+    (let ((real-test (intern (format "compat-%s-%04d-actual/expect" name 
compat-test-counter)))
+          (comp-test (intern (format "compat-%s-%04d-compat/expect" name 
compat-test-counter)))
           (error-type (if (consp error-spec) (car error-spec) error-spec)))
       (setq compat-test-counter (1+ compat-test-counter))
       (macroexp-progn



reply via email to

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