# HG changeset patch # User jruigrok # Date 1250943220 0 # Node ID 08df471ac0f831151300d751f094610ce557cd80 # Parent 64155e929c84cea1614617b0cc660e84d0d592cd 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)