# HG changeset patch # User Brian Neal # Date 1400346609 18000 # Node ID 85880b0df024cdb0f87f816d715d5b427891a752 # Parent b554aedf45dfce867e4200b9de7b49729d974e33 Tweak donations test since we changed the monthly goal. diff -r b554aedf45df -r 85880b0df024 donations/tests.py --- a/donations/tests.py Sat May 17 12:09:54 2014 -0500 +++ b/donations/tests.py Sat May 17 12:10:09 2014 -0500 @@ -116,9 +116,9 @@ def test_monthly_goal_pct(self): - self.assertEqual(settings.DONATIONS_GOAL, Decimal('100.00')) + self.assertEqual(settings.DONATIONS_GOAL, Decimal('120.00')) pct = Donation.objects.monthly_goal_pct(year=2012, month=9) - self.assertEqual(pct, 23) + self.assertEqual(pct, 19) def test_monthly_goal_pct2(self):