1
0
mirror of https://github.com/django/django.git synced 2025-06-05 03:29:12 +00:00

Modified view_tests for unittest2 discovery.

This commit is contained in:
Preston Timmons 2013-04-06 14:04:06 -05:00 committed by Carl Meyer
parent e8446be560
commit 56e777eba3
7 changed files with 5 additions and 5 deletions

View File

@ -1,10 +1,10 @@
from __future__ import absolute_import from __future__ import absolute_import
from .debug import (DebugViewTests, ExceptionReporterTests, from .test_debug import (DebugViewTests, ExceptionReporterTests,
ExceptionReporterTests, PlainTextReportTests, ExceptionReporterFilterTests, ExceptionReporterTests, PlainTextReportTests, ExceptionReporterFilterTests,
AjaxResponseExceptionReporterFilter) AjaxResponseExceptionReporterFilter)
from .defaults import DefaultsTests from .defaults import DefaultsTests
from .i18n import JsI18NTests, I18NTests, JsI18NTestsMultiPackage, JavascriptI18nTests from .test_i18n import JsI18NTests, I18NTests, JsI18NTestsMultiPackage, JavascriptI18nTests
from .shortcuts import ShortcutTests from .test_shortcuts import ShortcutTests
from .specials import URLHandling from .test_specials import URLHandling
from .static import StaticHelperTest, StaticUtilsTests, StaticTests from .test_static import StaticHelperTest, StaticUtilsTests, StaticTests