Removed unnecessary MySQL workaround in timezones tests.

Unnecessary since 22da5f8817.
This commit is contained in:
Mariusz Felisiak 2022-09-26 13:36:47 +02:00 committed by GitHub
parent 3fb9c74d13
commit f4e592e383
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 6 deletions

View File

@ -1497,18 +1497,14 @@ class AdminTests(TestCase):
@requires_tz_support @requires_tz_support
def test_change_readonly(self): def test_change_readonly(self):
Timestamp.objects.create() t = Timestamp.objects.create()
# re-fetch the object for backends that lose microseconds (MySQL)
t = Timestamp.objects.get()
response = self.client.get( response = self.client.get(
reverse("admin_tz:timezones_timestamp_change", args=(t.pk,)) reverse("admin_tz:timezones_timestamp_change", args=(t.pk,))
) )
self.assertContains(response, t.created.astimezone(EAT).isoformat()) self.assertContains(response, t.created.astimezone(EAT).isoformat())
def test_change_readonly_in_other_timezone(self): def test_change_readonly_in_other_timezone(self):
Timestamp.objects.create() t = Timestamp.objects.create()
# re-fetch the object for backends that lose microseconds (MySQL)
t = Timestamp.objects.get()
with timezone.override(ICT): with timezone.override(ICT):
response = self.client.get( response = self.client.get(
reverse("admin_tz:timezones_timestamp_change", args=(t.pk,)) reverse("admin_tz:timezones_timestamp_change", args=(t.pk,))