diff --git a/opentech/apply/funds/tests/test_models.py b/opentech/apply/funds/tests/test_models.py
index e04d98ee6691f01b355c0b72b9044a65482b42d5..fecb73b808c0f2a2fc87f8355e96085e9b4d778c 100644
--- a/opentech/apply/funds/tests/test_models.py
+++ b/opentech/apply/funds/tests/test_models.py
@@ -156,6 +156,12 @@ class TestRoundModelWorkflowAndForms(TestCase):
         for round_form, fund_form in itertools.zip_longest(self.round.forms.all(), self.fund.forms.all()):
             self.assertEqual(round_form, fund_form)
 
+    def test_can_change_round_form_not_fund(self):
+        self.round.save()
+        # We are no longer creating a round
+        del self.round.parent_page
+        form = self.round.forms.first()
+
 
 class TestFormSubmission(TestCase):
     def setUp(self):