Commit dc8edc9d authored by Tim Graham's avatar Tim Graham
Browse files

Added tzinfo to a test to fix RuntimeWarning.

parent 307acc74
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -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):