summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <n.goaziou@gmail.com>2012-11-28 14:04:21 +0100
committerNicolas Goaziou <n.goaziou@gmail.com>2012-11-28 14:04:21 +0100
commit97508e72dda9b26a0412c4339bc6b32709e58add (patch)
treea103ef14892353ea1209e4a17db4f5b800c2e8b7
parent89b8a8ca6daa3ccafa818a7085620eeee1ab9752 (diff)
downloadorg-mode-97508e72dda9b26a0412c4339bc6b32709e58add.tar.gz
test-org: Attempt to fix failing test on 24.3 pre-release
-rw-r--r--testing/lisp/test-org.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/testing/lisp/test-org.el b/testing/lisp/test-org.el
index 3e38886..50a000b 100644
--- a/testing/lisp/test-org.el
+++ b/testing/lisp/test-org.el
@@ -458,20 +458,20 @@ http://article.gmane.org/gmane.emacs.orgmode/21459/"
(eolp))))
;; At an headline with special movement.
(should
- (org-test-with-temp-text "* Headline :tag:"
+ (org-test-with-temp-text "* Headline :tag:\n"
(let ((org-special-ctrl-a/e t))
(and (progn (org-end-of-line) (looking-at " :tag:"))
(progn (org-end-of-line) (eolp))
(progn (org-end-of-line) (looking-at " :tag:"))))))
;; At an headline without special movement.
(should
- (org-test-with-temp-text "* Headline :tag:"
+ (org-test-with-temp-text "* Headline :tag:\n"
(let ((org-special-ctrl-a/e nil))
(and (progn (org-end-of-line) (eolp))
(progn (org-end-of-line) (eolp))))))
;; At an headline, with reversed movement.
(should
- (org-test-with-temp-text "* Headline :tag:"
+ (org-test-with-temp-text "* Headline :tag:\n"
(let ((org-special-ctrl-a/e 'reversed)
(this-command last-command))
(and (progn (org-end-of-line) (eolp))