Refs #21113 -- Updated test to allow for bad MySQL time resolution
This commit is contained in:
parent
3541ca1504
commit
4a03e6f272
|
@ -61,7 +61,7 @@ class LogEntryTests(TestCase):
|
||||||
change_url = reverse('admin:admin_utils_article_change', args=[quote(self.a1.pk)])
|
change_url = reverse('admin:admin_utils_article_change', args=[quote(self.a1.pk)])
|
||||||
response = self.client.post(change_url, post_data)
|
response = self.client.post(change_url, post_data)
|
||||||
self.assertRedirects(response, reverse('admin:admin_utils_article_changelist'))
|
self.assertRedirects(response, reverse('admin:admin_utils_article_changelist'))
|
||||||
logentry = LogEntry.objects.filter(content_type__model__iexact='article').latest('action_time')
|
logentry = LogEntry.objects.filter(content_type__model__iexact='article').latest('id')
|
||||||
self.assertEqual(logentry.get_change_message(), 'Changed title and hist.')
|
self.assertEqual(logentry.get_change_message(), 'Changed title and hist.')
|
||||||
with translation.override('fr'):
|
with translation.override('fr'):
|
||||||
self.assertEqual(logentry.get_change_message(), 'Modification de title et hist.')
|
self.assertEqual(logentry.get_change_message(), 'Modification de title et hist.')
|
||||||
|
@ -70,7 +70,7 @@ class LogEntryTests(TestCase):
|
||||||
post_data['title'] = 'New'
|
post_data['title'] = 'New'
|
||||||
response = self.client.post(add_url, post_data)
|
response = self.client.post(add_url, post_data)
|
||||||
self.assertRedirects(response, reverse('admin:admin_utils_article_changelist'))
|
self.assertRedirects(response, reverse('admin:admin_utils_article_changelist'))
|
||||||
logentry = LogEntry.objects.filter(content_type__model__iexact='article').latest('action_time')
|
logentry = LogEntry.objects.filter(content_type__model__iexact='article').latest('id')
|
||||||
self.assertEqual(logentry.get_change_message(), 'Added.')
|
self.assertEqual(logentry.get_change_message(), 'Added.')
|
||||||
with translation.override('fr'):
|
with translation.override('fr'):
|
||||||
self.assertEqual(logentry.get_change_message(), 'Ajout.')
|
self.assertEqual(logentry.get_change_message(), 'Ajout.')
|
||||||
|
|
Loading…
Reference in New Issue