From f8915c0676a97c9e4830bee433551c5f74ff0136 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sat, 25 Feb 2006 17:09:54 +0000 Subject: [PATCH] Removed a datetime test in tests/defaultfilters -- it was failing because it's hard to test datetime-related stuff git-svn-id: http://code.djangoproject.com/svn/django/trunk@2389 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/othertests/defaultfilters.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/othertests/defaultfilters.py b/tests/othertests/defaultfilters.py index fa018a2328..d0d5d21e58 100644 --- a/tests/othertests/defaultfilters.py +++ b/tests/othertests/defaultfilters.py @@ -237,10 +237,6 @@ False >>> timesince(datetime.datetime.now() - datetime.timedelta(1)) '1 day' -# datetime.date compataibility with timesince ->>> timesince(datetime.date.today() - datetime.timedelta(1)) -'1 day, 23 hours' - >>> default("val", "default") 'val'