Removed a bit of unused code

This commit is contained in:
Karl Hobley 2015-05-03 11:19:45 +01:00
parent 61584ae2f8
commit 8f642a5b2f

View file

@ -94,12 +94,6 @@ class TestFormSubmission(TestCase):
self.assertEqual(len(mail.outbox), 1)
self.assertIn("Your choices: None", mail.outbox[0].body)
# Check that the checkbox value was saved correctly
form_page = Page.objects.get(url_path='/home/contact-us/')
submission = FormSubmission.objects.filter(
page=form_page, form_data__contains='hello world'
)
class TestFormBuilder(TestCase):
fixtures = ['test.json']