Skip to content

Commit

Permalink
[1.3.X] Fixed #17488 -- This test passed in 2011 only because 2012-01…
Browse files Browse the repository at this point in the history
…-01 is a Sunday. Thanks Florian Apolloner for the report and patch.

Fixes #17912. Thanks Julien for the report.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.3.X@17759 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
ramiro committed Mar 17, 2012
1 parent 1dd8848 commit 92929d5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/regressiontests/generic_views/dates.py
Expand Up @@ -255,7 +255,8 @@ def test_week_view_allow_empty(self):
self.assertEqual(list(res.context['book_list']), [])

def test_week_view_allow_future(self):
future = datetime.date(datetime.date.today().year + 1, 1, 1)
# January 7th always falls in week 1, given Python's definition of week numbers
future = datetime.date(datetime.date.today().year + 1, 1, 7)
b = Book.objects.create(name="The New New Testement", pages=600, pubdate=future)

res = self.client.get('/dates/books/%s/week/1/' % future.year)
Expand Down

0 comments on commit 92929d5

Please sign in to comment.