diff --git a/tests/othertests/defaultfilters.py b/tests/othertests/defaultfilters.py index d0d5d21e58..9be9c61601 100644 --- a/tests/othertests/defaultfilters.py +++ b/tests/othertests/defaultfilters.py @@ -322,7 +322,7 @@ False """ -from django.core.template.defaultfilters import * +from django.template.defaultfilters import * import datetime if __name__ == '__main__': diff --git a/tests/othertests/markup.py b/tests/othertests/markup.py index d2d2203b17..f95bc87304 100644 --- a/tests/othertests/markup.py +++ b/tests/othertests/markup.py @@ -1,6 +1,6 @@ # Quick tests for the markup templatetags (django.contrib.markup) -from django.core.template import Template, Context, add_to_builtins +from django.template import Template, Context, add_to_builtins add_to_builtins('django.contrib.markup.templatetags.markup') diff --git a/tests/othertests/templates.py b/tests/othertests/templates.py index f7771be336..8af8e027cf 100644 --- a/tests/othertests/templates.py +++ b/tests/othertests/templates.py @@ -1,8 +1,8 @@ from django.conf import settings -from django.core import template -from django.core.template import loader +from django import template +from django.template import loader from django.utils.translation import activate, deactivate, install import traceback