Update burndown.t

Fixed indentation error.
This commit is contained in:
DanielMowitz 2021-08-06 14:37:22 +00:00 committed by Tomas Babej
parent cb07e93ddd
commit bad672dc0a

View file

@ -67,7 +67,7 @@ class TestBurndownCommand(TestCase):
def test_burndown_daily_non_cumulative(self): def test_burndown_daily_non_cumulative(self):
"""Ensure burndown.daily in non-cumulative mode generates a chart""" """Ensure burndown.daily in non-cumulative mode generates a chart"""
self.t.config("burndown.cumulative", False) self.t.config("burndown.cumulative", False)
code, out, err = self.t("burndown.daily") code, out, err = self.t("burndown.daily")
self.assertIn("Daily Burndown", out) self.assertIn("Daily Burndown", out)
self.assertIn(".", out) self.assertIn(".", out)
self.assertIn("+", out) self.assertIn("+", out)