We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d3fbbe commit 0b22074Copy full SHA for 0b22074
tests/test_contrib/test_unittest_case/test_unittest_case.py
@@ -8,6 +8,11 @@ class TestDirectMigration(MigratorTestCase):
8
migrate_from = ('main_app', '0002_someitem_is_clean')
9
migrate_to = ('main_app', '0003_update_is_clean')
10
11
+ @classmethod
12
+ def setUpClass(cls):
13
+ # added to trigger #503
14
+ return super().setUpClass()
15
+
16
def prepare(self):
17
"""Prepare some data before the migration."""
18
SomeItem = self.old_state.apps.get_model('main_app', 'SomeItem')
0 commit comments