diff --git a/testing/lisp/test-ol.el b/testing/lisp/test-ol.el index 343631623..429bb52ee 100644 --- a/testing/lisp/test-ol.el +++ b/testing/lisp/test-ol.el @@ -59,19 +59,19 @@ (ert-deftest test-ol/org-toggle-link-display () (dotimes (_ 2) (goto-char 1) (re-search-forward "\\[") - (should-not (xor org-link-descriptive (org-invisible-p))) + (should-not (org-xor org-link-descriptive (org-invisible-p))) (re-search-forward "example") - (should-not (xor org-link-descriptive (org-invisible-p))) + (should-not (org-xor org-link-descriptive (org-invisible-p))) (re-search-forward "com") - (should-not (xor org-link-descriptive (org-invisible-p))) + (should-not (org-xor org-link-descriptive (org-invisible-p))) (re-search-forward "]") - (should-not (xor org-link-descriptive (org-invisible-p))) + (should-not (org-xor org-link-descriptive (org-invisible-p))) (re-search-forward "\\[") (should-not (org-invisible-p)) (re-search-forward "link") (should-not (org-invisible-p)) (re-search-forward "]") - (should-not (xor org-link-descriptive (org-invisible-p))) + (should-not (org-xor org-link-descriptive (org-invisible-p))) (org-toggle-link-display)))))