Fix clock-related failing tests

* testing/lisp/test-org-clock.el (test-org-clock/clocktable/match):
(test-org-clock/clocktable/tags): Fix test.
This commit is contained in:
Nicolas Goaziou 2018-04-28 02:47:35 +02:00
parent eab65c9cf8
commit c7c8370dfb
1 changed files with 8 additions and 8 deletions

View File

@ -327,11 +327,11 @@ the buffer."
;; Test match filtering. ;; Test match filtering.
(should (should
(equal (equal
"| Headline | Time | | "| Headline | Time | |
|------------+------+------| |--------------+--------+------|
| *Total time* | *2:00* | | | *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>" (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")) (insert (org-test-clock-create-clock ". 1:00" ". 2:00"))
(goto-line 4) (goto-line 4)
@ -343,11 +343,11 @@ the buffer."
;; Test tags column. ;; Test tags column.
(should (should
(equal (equal
"| Tags | Headline | Time | | "| Tags | Headline | Time | |
|------+------------+------+------| |------+--------------+--------+------|
| | *Total time* | *1:00* | | | | *Total time* | *1:00* | |
|------+------------+------+------| |------+--------------+--------+------|
| tag | H1 | | 1:00 |" | tag | H1 | | 1:00 |"
(org-test-with-temp-text "** H1 :tag:\n\n*** H2 \n<point>" (org-test-with-temp-text "** H1 :tag:\n\n*** H2 \n<point>"
(insert (org-test-clock-create-clock ". 1:00" ". 2:00")) (insert (org-test-clock-create-clock ". 1:00" ". 2:00"))
(goto-line 4) (goto-line 4)