Mercurial > public > sg101
diff donations/tests.py @ 1202:50e511e032db
Get unit tests working again.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 04 Jan 2025 14:10:38 -0600 |
parents | 9e803323a0d0 |
children |
line wrap: on
line diff
--- a/donations/tests.py Sun Mar 24 14:50:23 2024 -0500 +++ b/donations/tests.py Sat Jan 04 14:10:38 2025 -0600 @@ -116,9 +116,9 @@ def test_monthly_goal_pct(self): - self.assertEqual(settings.DONATIONS_GOAL, Decimal('120.00')) + self.assertEqual(settings.DONATIONS_GOAL, Decimal('94.00')) pct = Donation.objects.monthly_goal_pct(year=2012, month=9) - self.assertEqual(pct, 19) + self.assertEqual(pct, 24) def test_monthly_goal_pct2(self):