branch: elpa/beancount commit 0c68d19eb8dc924651e28431896436542269bd3c Author: Vladimir Kazanov <vkaza...@inbox.ru> Commit: Daniele Nicolodi <dani...@grinta.net>
Fix indentation --- beancount-tests.el | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/beancount-tests.el b/beancount-tests.el index 81e3115aa3..0ffd5c636f 100644 --- a/beancount-tests.el +++ b/beancount-tests.el @@ -333,18 +333,20 @@ known option nmaes." (goto-char 7) (should (equal (thing-at-point 'beancount-link) "^link")))) +;;; Date shifting + (ert-deftest beancount/date-shift-up-day () - :tags '(date-shift) - (with-temp-buffer - (insert "2024-05-11\n") - (goto-char 0) - (beancount-date-up-day) - (should (equal (thing-at-point 'line) "2024-05-12\n")))) + :tags '(date-shift) + (with-temp-buffer + (insert "2024-05-11\n") + (goto-char 0) + (beancount-date-up-day) + (should (equal (thing-at-point 'line) "2024-05-12\n")))) (ert-deftest beancount/date-shift-down-day () - :tags '(date-shift) - (with-temp-buffer - (insert "2024-05-11\n") - (goto-char 0) - (beancount-date-down-day) - (should (equal (thing-at-point 'line) "2024-05-10\n")))) + :tags '(date-shift) + (with-temp-buffer + (insert "2024-05-11\n") + (goto-char 0) + (beancount-date-down-day) + (should (equal (thing-at-point 'line) "2024-05-10\n"))))