From c0c1bb9e64d7e1cea50dc4818ffcf229b568578b Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Fri, 31 Oct 2014 11:38:53 +0100 Subject: Avoided using private API get_template_from_string. --- tests/test_utils/views.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/test_utils') diff --git a/tests/test_utils/views.py b/tests/test_utils/views.py index 48fddba283..6c30d07199 100644 --- a/tests/test_utils/views.py +++ b/tests/test_utils/views.py @@ -1,6 +1,6 @@ from django.http import HttpResponse from django.shortcuts import get_object_or_404 -from django.template import loader, Context +from django.template import Context, Template from .models import Person @@ -11,7 +11,7 @@ def get_person(request, pk): def no_template_used(request): - template = loader.get_template_from_string("This is a string-based template") + template = Template("This is a string-based template") return HttpResponse(template.render(Context({}))) -- cgit v1.3