diff --git a/opentech/apply/funds/tests/test_question_serialisation.py b/opentech/apply/funds/tests/test_question_serialisation.py
deleted file mode 100644
index a4affcbf41e732792b83a5b218fa3ca7b27fe30f..0000000000000000000000000000000000000000
--- a/opentech/apply/funds/tests/test_question_serialisation.py
+++ /dev/null
@@ -1,19 +0,0 @@
-from django.test import TestCase
-
-from .factories import ApplicationFormFactory, FundTypeFactory, RoundFactory, RoundFormFactory
-
-
-class TestSerialisationQuestions(TestCase):
-    def setUp(self):
-        application_form = {
-            'form_fields__0__email__': '',
-            'form_fields__1__full_name__': '',
-        }
-        form = ApplicationFormFactory(**application_form)
-        fund = FundTypeFactory()
-
-        self.round_page = RoundFactory(parent=fund)
-        RoundFormFactory(round=self.round_page, form=form)
-
-    def test_convet_to_json(self):
-        print(self.round_page.serialise_form())