Commit b1315611 authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

Fixed #13374 -- Modified a test so that it can pass under PyPy. This is a...

Fixed #13374 -- Modified a test so that it can pass under PyPy. This is a reimplementation of part of r12998, reverted in r13008. Thanks to Alex Gaynor.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@13010 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 829c5fdb
Loading
Loading
Loading
Loading
+4 −5
Original line number Diff line number Diff line
@@ -11,9 +11,8 @@ tests = r"""
...
>>> olddate = datetime.date
>>> datetime.date = MockDate
>>> datetime.date.today()
MockDate(2008, 5, 14)

>>> datetime.date.today() == olddate(2008, 5, 14)
True

# SECountySelect #####################################################
>>> from django.contrib.localflavor.se.forms import SECountySelect