summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2018-04-28 02:47:35 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2018-04-28 02:47:35 +0200
commitc7c8370dfbbbc2fd4e9238f6571981ef1bf1c154 (patch)
treea5c5f0c9a214e432c65fc9e89f800890605c0e42
parenteab65c9cf89eac1c09316230ffaf21e5a8d2af39 (diff)
downloadorg-mode-c7c8370dfbbbc2fd4e9238f6571981ef1bf1c154.tar.gz
Fix clock-related failing tests
* testing/lisp/test-org-clock.el (test-org-clock/clocktable/match): (test-org-clock/clocktable/tags): Fix test.
-rw-r--r--testing/lisp/test-org-clock.el16
1 files changed, 8 insertions, 8 deletions
diff --git a/testing/lisp/test-org-clock.el b/testing/lisp/test-org-clock.el
index e446af4..c27d3f1 100644
--- a/testing/lisp/test-org-clock.el
+++ b/testing/lisp/test-org-clock.el
@@ -327,11 +327,11 @@ the buffer."
;; Test match filtering.
(should
(equal
- "| Headline | Time | |
-|------------+------+------|
+ "| Headline | Time | |
+|--------------+--------+------|
| *Total time* | *2:00* | |
-|------------+------+------|
-| H1 | | 2:00 |"
+|--------------+--------+------|
+| H1 | | 2:00 |"
(org-test-with-temp-text "** H1\n\n*** H2 :tag:\n\n*** H3\n<point>"
(insert (org-test-clock-create-clock ". 1:00" ". 2:00"))
(goto-line 4)
@@ -343,11 +343,11 @@ the buffer."
;; Test tags column.
(should
(equal
- "| Tags | Headline | Time | |
-|------+------------+------+------|
+ "| Tags | Headline | Time | |
+|------+--------------+--------+------|
| | *Total time* | *1:00* | |
-|------+------------+------+------|
-| tag | H1 | | 1:00 |"
+|------+--------------+--------+------|
+| tag | H1 | | 1:00 |"
(org-test-with-temp-text "** H1 :tag:\n\n*** H2 \n<point>"
(insert (org-test-clock-create-clock ". 1:00" ". 2:00"))
(goto-line 4)