From 1f1c576cf5934e1c590faa7b0cad488aa8ffb9eb Mon Sep 17 00:00:00 2001 Message-ID: <1f1c576cf5934e1c590faa7b0cad488aa8ffb9eb.1706703212.git.yantar92@posteo.net> In-Reply-To: <316c36d2b388a81e43fabf392a75af85532f56ba.1706703212.git.yantar92@posteo.net> References: <316c36d2b388a81e43fabf392a75af85532f56ba.1706703212.git.yantar92@posteo.net> From: Ihor Radchenko Date: Wed, 31 Jan 2024 13:13:11 +0100 Subject: [PATCH 3/3] test-org-tests/test-duplicates-detector-testing-find-duplicates: Fix test * testing/lisp/test-duplicates-detector.el (test-org-tests/test-duplicates-detector-testing-find-duplicates): Fix test condition. --- testing/lisp/test-duplicates-detector.el | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/testing/lisp/test-duplicates-detector.el b/testing/lisp/test-duplicates-detector.el index b23fbce1e..25293f185 100644 --- a/testing/lisp/test-duplicates-detector.el +++ b/testing/lisp/test-duplicates-detector.el @@ -254,13 +254,13 @@ (ert-deftest test-org-tests/test-duplicates-detector-testing-find-duplicates () (equal (test-duplicates-detector--find-duplicates (list test-duplicates-detector-file-path)) - `((((,test-duplicates-detector-file-path - test-org-tests/test-with-nested-duplicates) - ((let ((var "string")) (should (message "123 %s" var))) 6 4)) - ((,test-duplicates-detector-file-path - test-org-tests/test-with-duplicates-at-root) - ((should (message "123")) 6 4))) - ((test-org-tests/duplicate-test-2 . test-org-tests/duplicate-test-1)))))) + `(((,test-duplicates-detector-file-path + test-org-tests/test-with-nested-duplicates) + ((let ((var "string")) (should (message "123 %s" var))) 6 4)) + ((,test-duplicates-detector-file-path + test-org-tests/test-with-duplicates-at-root) + ((should (message "123")) 6 4)) + (test-org-tests/duplicate-test-2 . test-org-tests/duplicate-test-1))))) ;;;;; Tests with duplicate forms -- 2.43.0