Commit 4fada6f1 authored by Michael Hall's avatar Michael Hall
Browse files

Fixed #23893: Added tzinfo to constant datetime in unit test

Added tzinfo to y2k constant (01/01/2000) in
custom_lookups.tests.DateTimeLookupTests.test_datetime_output_field
to fix warning message regarding naive datetimes.
parent 4efe1b79
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -465,6 +465,7 @@ answer newbie questions, and generally made Django that much better:
    Maximillian Dornseif <md@hudora.de>
    mccutchen@gmail.com
    Meir Kriheli <http://mksoft.co.il/>
    Michael Hall <mhall1@ualberta.ca>
    Michael Josephson <http://www.sdjournal.com/>
    Michael Manfre <mmanfre@gmail.com>
    michael.mcewan@gmail.com
+2 −1
Original line number Diff line number Diff line
@@ -8,6 +8,7 @@ from django.core.exceptions import FieldError
from django.db import models
from django.db import connection
from django.test import TestCase, override_settings
from django.utils import timezone
from .models import Author, MySQLUnixTimestamp


@@ -376,7 +377,7 @@ class DateTimeLookupTests(TestCase):
        models.PositiveIntegerField.register_lookup(DateTimeTransform)
        try:
            ut = MySQLUnixTimestamp.objects.create(timestamp=time.time())
            y2k = datetime(2000, 1, 1)
            y2k = timezone.make_aware(datetime(2000, 1, 1))
            self.assertQuerysetEqual(
                MySQLUnixTimestamp.objects.filter(timestamp__as_datetime__gt=y2k),
                [ut], lambda x: x)