summaryrefslogtreecommitdiff
path: root/tests/migrations/test_graph.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/migrations/test_graph.py')
-rw-r--r--tests/migrations/test_graph.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/migrations/test_graph.py b/tests/migrations/test_graph.py
index 44608c0128..b4252a94c8 100644
--- a/tests/migrations/test_graph.py
+++ b/tests/migrations/test_graph.py
@@ -4,11 +4,11 @@ from django.db.migrations.exceptions import (
CircularDependencyError, NodeNotFoundError,
)
from django.db.migrations.graph import RECURSION_DEPTH_WARNING, MigrationGraph
-from django.test import TestCase
+from django.test import SimpleTestCase
from django.utils.encoding import force_text
-class GraphTests(TestCase):
+class GraphTests(SimpleTestCase):
"""
Tests the digraph structure.
"""