A couple of isort fixes

This commit is contained in:
Karl Hobley 2016-04-16 15:21:12 +01:00
parent 62b8155792
commit 2b8ae21f34
2 changed files with 2 additions and 2 deletions

View file

@ -4,9 +4,9 @@ from django.contrib.auth import get_user_model
from django.contrib.auth.models import Group
from django.test import TestCase
from wagtail.wagtailcore.models import Page
from wagtail.tests.testapp.models import BusinessIndex
from wagtail.tests.utils import WagtailTestUtils
from wagtail.wagtailcore.models import Page
class TestIndexView(TestCase, WagtailTestUtils):

View file

@ -4,7 +4,7 @@ from django.contrib.auth import get_user_model
from django.contrib.auth.models import Group
from django.test import TestCase
from wagtail.tests.modeladmintest.models import Book, Author
from wagtail.tests.modeladmintest.models import Author, Book
from wagtail.tests.utils import WagtailTestUtils