summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/timezones/tests.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/timezones/tests.py b/tests/timezones/tests.py
index a091681929..30878e0d30 100644
--- a/tests/timezones/tests.py
+++ b/tests/timezones/tests.py
@@ -1173,9 +1173,10 @@ class AdminTests(TestCase):
# password = "secret"
cls.u1 = User.objects.create(
id=100, password='sha1$995a3$6011485ea3834267d719b4c801409b8b1ddd0158',
- last_login=datetime.datetime(2007, 5, 30, 13, 20, 10), is_superuser=True, username='super',
- first_name='Super', last_name='User', email='super@example.com',
- is_staff=True, is_active=True, date_joined=datetime.datetime(2007, 5, 30, 13, 20, 10)
+ last_login=datetime.datetime(2007, 5, 30, 13, 20, 10, tzinfo=UTC),
+ is_superuser=True, username='super', first_name='Super', last_name='User',
+ email='super@example.com', is_staff=True, is_active=True,
+ date_joined=datetime.datetime(2007, 5, 30, 13, 20, 10, tzinfo=UTC),
)
def setUp(self):