mirror of
https://github.com/django/django.git
synced 2025-09-02 16:57:36 +00:00
Refs #24652 -- Used SimpleTestCase where appropriate.
This commit is contained in:
parent
e2b77acedd
commit
be67400b47
93 changed files with 362 additions and 340 deletions
|
@ -2,12 +2,12 @@
|
|||
|
||||
from django.db import migrations, models
|
||||
from django.db.migrations.optimizer import MigrationOptimizer
|
||||
from django.test import TestCase
|
||||
from django.test import SimpleTestCase
|
||||
|
||||
from .models import CustomModelBase, EmptyManager
|
||||
|
||||
|
||||
class OptimizerTests(TestCase):
|
||||
class OptimizerTests(SimpleTestCase):
|
||||
"""
|
||||
Tests the migration autodetector.
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue