test-org-export/activate-smart-quotes: Uncomment working test

* testing/lisp/test-ox.el (test-org-export/activate-smart-quotes):
Uncomment a test that was claimed broken.  It is not anymore.
This commit is contained in:
Ihor Radchenko 2022-11-23 11:32:04 +08:00
parent 07eced3639
commit bd384d3267
No known key found for this signature in database
GPG Key ID: 6470762A7DA11D8B
1 changed files with 7 additions and 10 deletions

View File

@ -4172,16 +4172,13 @@ This test does not cover listings and custom environments."
(org-element-map tree 'plain-text
(lambda (s) (org-export-activate-smart-quotes s :html info))
info nil nil t)))))
;; FIXME: Test failing non-interactively.
;;
;; (should
;; (equal '("“foo”")
;; (let ((org-export-default-language "en"))
;; (org-test-with-parsed-data "*\"foo\"*"
;; (org-element-map tree 'plain-text
;; (lambda (s) (org-export-activate-smart-quotes s :html info))
;; info nil nil t)))))
)
(should
(equal '("“foo”")
(let ((org-export-default-language "en"))
(org-test-with-parsed-data "*\"foo\"*"
(org-element-map tree 'plain-text
(lambda (s) (org-export-activate-smart-quotes s :html info))
info nil nil t))))))