diff --git a/wagtail/wagtailcore/tests/test_blocks.py b/wagtail/wagtailcore/tests/test_blocks.py
index 82c678b98b..074abb77e1 100644
--- a/wagtail/wagtailcore/tests/test_blocks.py
+++ b/wagtail/wagtailcore/tests/test_blocks.py
@@ -1310,7 +1310,7 @@ class TestStructBlock(SimpleTestCase):
self.assertEqual(result, """
Bonjour
monde italique
""")
-class TestListBlock(SimpleTestCase, WagtailTestUtils):
+class TestListBlock(WagtailTestUtils, SimpleTestCase):
def test_initialise_with_class(self):
block = blocks.ListBlock(blocks.CharBlock)
@@ -1632,7 +1632,7 @@ class TestListBlock(SimpleTestCase, WagtailTestUtils):
self.assertIn('value="chocolate"', form_html)
-class TestStreamBlock(SimpleTestCase, WagtailTestUtils):
+class TestStreamBlock(WagtailTestUtils, SimpleTestCase):
def test_initialisation(self):
block = blocks.StreamBlock([
('heading', blocks.CharBlock()),