diff --git a/wagtail/wagtailadmin/tests/test_blocks.py b/wagtail/wagtailadmin/tests/test_blocks.py
index 759c47dc6..c4a430321 100644
--- a/wagtail/wagtailadmin/tests/test_blocks.py
+++ b/wagtail/wagtailadmin/tests/test_blocks.py
@@ -463,35 +463,6 @@ class TestStreamBlock(unittest.TestCase):
self.assertIn('', html)
self.assertIn('', html)
- def test_render_form_uses_default_value(self):
- class ArticleBlock(blocks.StreamBlock):
- heading = blocks.FieldBlock(forms.CharField(), )
- paragraph = blocks.FieldBlock(forms.CharField())
-
- default = [
- {
- 'type': 'heading',
- 'value': "My title",
- }
- ]
-
- block = ArticleBlock()
- value = block.to_python([
- {
- 'type': 'heading',
- 'value': "My title",
- },
- {
- 'type': 'paragraph',
- 'value': 'My first paragraph',
- },
- {
- 'type': 'paragraph',
- 'value': 'My second paragraph',
- },
- ])
- return block.render_form(value, prefix='myarticle')
-
def test_html_declarations(self):
class LinkBlock(blocks.StructBlock):
title = blocks.FieldBlock(forms.CharField())