From fe02b0e99860612c9dc11e5e23592b966410984f Mon Sep 17 00:00:00 2001 From: Joseph Kocherhans Date: Fri, 13 Jan 2006 17:36:53 +0000 Subject: [PATCH] magic-removal: updated tests to reflect new location of django.core.template git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@1947 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/othertests/defaultfilters.py | 2 +- tests/othertests/markup.py | 2 +- tests/othertests/templates.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) 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