1
0
mirror of https://github.com/django/django.git synced 2024-12-23 01:25:58 +00:00

ticket #34699. reformatting code

This commit is contained in:
wesley 2024-10-09 18:40:11 -04:00
parent 5a7b3e8359
commit 87731a1129

View File

@ -1952,7 +1952,7 @@ 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')
start_trunc=TruncSecond("start_datetime")
).filter(id=non_utc_model.id, start_trunc__lte=now)
self.assertEqual(models_qs.count(), 1)
test_timezones = [
@ -1965,13 +1965,13 @@ 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')
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')
)
models_qs = DTModel.objects.annotate(
start_trunc=TruncSecond('start_datetime')
start_trunc=TruncSecond("start_datetime")
).filter(id=non_utc_model.id, start_trunc__lte=adjusted_now)
self.assertEqual(models_qs.count(), 1)