fix test fail introduced by change of default in e8742b78e0

* testing/lisp/test-org-list.el (test-org-list/to-html): Bind
  `org-html-indent´ to nil for testing.
This commit is contained in:
Achim Gratz 2013-03-18 08:07:26 +01:00
parent a461b0a444
commit 63c5bc4425

View file

@ -757,6 +757,7 @@
"Test `org-list-to-html' specifications."
(should
(equal "<ul class=\"org-ul\">\n<li>a\n</li>\n</ul>"
(let (org-html-indent)
(with-temp-buffer
(insert "<!-- BEGIN RECEIVE ORGLST name -->
<!-- END RECEIVE ORGLST name -->
@ -774,7 +775,7 @@
(progn (re-search-forward "^<!-- END" nil t)
(beginning-of-line)
(skip-chars-backward " \r\t\n")
(point)))))))
(point))))))))
(ert-deftest test-org-list/to-latex ()
"Test `org-list-to-latex' specifications."