summaryrefslogtreecommitdiff
path: root/tests/m2m_through
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-09-22 15:34:24 -0400
committerTim Graham <timograham@gmail.com>2017-09-25 14:48:15 -0400
commita80903b7114c984b5087597e8c34750e7bb44f51 (patch)
tree62f8064da3575b8e8980813f4888d7a0c70b39a3 /tests/m2m_through
parent8a1768432b1ec3ecfa390ac5eb70dbfb0cff59b3 (diff)
Removed DatabaseFeatures.supports_microsecond_precision.
MySQL 5.5 (refs #28552) was the last database to use it.
Diffstat (limited to 'tests/m2m_through')
-rw-r--r--tests/m2m_through/tests.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/m2m_through/tests.py b/tests/m2m_through/tests.py
index 0890188703..5be6ef72d0 100644
--- a/tests/m2m_through/tests.py
+++ b/tests/m2m_through/tests.py
@@ -1,7 +1,7 @@
from datetime import datetime
from operator import attrgetter
-from django.test import TestCase, skipUnlessDBFeature
+from django.test import TestCase
from .models import (
CustomMembership, Employee, Event, Friendship, Group, Ingredient,
@@ -196,7 +196,6 @@ class M2mThroughTests(TestCase):
attrgetter("name")
)
- @skipUnlessDBFeature('supports_microsecond_precision')
def test_order_by_relational_field_through_model(self):
CustomMembership.objects.create(person=self.jim, group=self.rock)
CustomMembership.objects.create(person=self.bob, group=self.rock)