From eb9a3bd63a2eac2805ce8a23640ba4d7bc31699c Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Mon, 10 Apr 2017 08:13:45 -0400 Subject: [PATCH] Refs #26605 -- Isolated a migrations state test. --- tests/migrations/test_state.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/migrations/test_state.py b/tests/migrations/test_state.py index 8b3d1f998a..ee6a9544d9 100644 --- a/tests/migrations/test_state.py +++ b/tests/migrations/test_state.py @@ -1017,6 +1017,10 @@ class ModelStateTests(SimpleTestCase): class SearchableLocation(models.Model): keywords = models.CharField(max_length=256) + class Meta: + app_label = 'migrations' + apps = new_apps + class Station(SearchableLocation): name = models.CharField(max_length=128)