summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-02-25 17:09:54 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-02-25 17:09:54 +0000
commitf8915c0676a97c9e4830bee433551c5f74ff0136 (patch)
tree010a048a2234985fd4c8c10e920ad704bf2b5211
parentc2b60ce1368395d812742f2e67a526c40397c244 (diff)
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
-rw-r--r--tests/othertests/defaultfilters.py4
1 files changed, 0 insertions, 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'