From 9833b931b78ab3fac33b55873d13769f6dcdb41e Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Thu, 17 Oct 2013 13:51:36 -0400 Subject: [PATCH] Removed importing formtools tests in __init__.py Unnecessary since introduction of DiscoveryTestRunner in 9012833af8. --- .../formtools/tests/wizard/__init__.py | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/django/contrib/formtools/tests/wizard/__init__.py b/django/contrib/formtools/tests/wizard/__init__.py index 81de44e655..e69de29bb2 100644 --- a/django/contrib/formtools/tests/wizard/__init__.py +++ b/django/contrib/formtools/tests/wizard/__init__.py @@ -1,19 +0,0 @@ -from django.contrib.formtools.tests.wizard.test_cookiestorage import TestCookieStorage -from django.contrib.formtools.tests.wizard.test_forms import FormTests, SessionFormTests, CookieFormTests -from django.contrib.formtools.tests.wizard.test_loadstorage import TestLoadStorage -from django.contrib.formtools.tests.wizard.namedwizardtests.tests import ( - NamedSessionWizardTests, - NamedCookieWizardTests, - TestNamedUrlSessionWizardView, - TestNamedUrlCookieWizardView, - NamedSessionFormTests, - NamedCookieFormTests, -) -from django.contrib.formtools.tests.wizard.test_sessionstorage import TestSessionStorage -from django.contrib.formtools.tests.wizard.wizardtests.tests import ( - SessionWizardTests, - CookieWizardTests, - WizardTestKwargs, - WizardTestGenericViewInterface, - WizardFormKwargsOverrideTests, -)