Fixed rendering of countdown columns

Countdown columns were counting up days instead of down.
This commit is contained in:
sebu06 2021-07-18 21:42:53 +02:00 committed by Tomas Babej
parent 69b34dcef3
commit 90bc7f4b23
3 changed files with 5 additions and 3 deletions

View file

@ -390,8 +390,8 @@ class TestDateFormats(TestCase):
def test_date_format_countdown(self):
"""Verify due.countdown formatting"""
code, out, err = self.t("xxx rc.report.xxx.columns:id,due.countdown")
self.assertRegex(out, r'1\s+\d+\S+')
self.assertRegex(out, r'2\s+')
self.assertRegex(out, r'1\s+')
self.assertRegex(out, r'2\s+\d+\S+')
def test_date_format_unrecognized(self):
"""Verify due.donkey formatting fails"""