diff options
Diffstat (limited to 'tests/test_utils/views.py')
| -rw-r--r-- | tests/test_utils/views.py | 4 |
1 files changed, 2 insertions, 2 deletions
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({}))) |
