# HG changeset patch # User jruigrok # Date 1250943220 0 # Node ID a3ddb13ff2a67f348e93f310fe967e1d4231dcab # Parent 07855b5aa0b8a44d4dfff10635eebfe2cd04f29e The date now returns 52 with the current data, adjust the test accordingly. diff --git a/babel/tests/dates.py b/babel/tests/dates.py --- a/babel/tests/dates.py +++ b/babel/tests/dates.py @@ -61,7 +61,7 @@ fmt = dates.DateTimeFormat(d, locale='de_DE') self.assertEqual('52', fmt['w']) fmt = dates.DateTimeFormat(d, locale='en_US') - self.assertEqual('53', fmt['ww']) + self.assertEqual('52', fmt['ww']) def test_week_of_month_first(self): d = date(2006, 1, 8)