1
0
mirror of https://github.com/django/django.git synced 2025-04-06 06:26:41 +00:00

ticket #34699. fixed code formatting

This commit is contained in:
wesley 2024-10-08 20:26:14 -04:00
parent 033f11be06
commit 99446762fc

View File

@ -1965,13 +1965,14 @@ class DateFunctionWithTimeZoneTests(DateFunctionTests):
later = now + timedelta(hours=2)
non_utc_model = self.create_model(now, later)
models_qs = DTModel.objects.annotate(
start_trunc=TruncSecond('start_datetime')).filter(id=non_utc_model.id,
start_trunc__lte=now)
start_trunc=TruncSecond('start_datetime')).filter(
id=non_utc_model.id,
start_trunc__lte=now)
self.assertNotEqual(models_qs.count(), 1)
adjusted_now = timezone.localtime(now).replace(tzinfo=zoneinfo.ZoneInfo(key='UTC'))
adjusted_now = timezone.localtime(now).replace(
tzinfo=zoneinfo.ZoneInfo(key='UTC'))
models_qs = DTModel.objects.annotate(
start_trunc=TruncSecond('start_datetime')).filter(id=non_utc_model.id,
start_trunc__lte=adjusted_now)
start_trunc=TruncSecond('start_datetime')).filter(
id=non_utc_model.id,
start_trunc__lte=adjusted_now)
self.assertEqual(models_qs.count(), 1)