Skip to content

Commit 0f0c1e1

Browse files
Test update
1 parent 494d779 commit 0f0c1e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/ql/test/library-tests/frameworks/django-v2-v3/template_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
from django.template import Template, engines
22
from django.urls import path
3-
from django.http.response import HttpResponse,
3+
from django.http.response import HttpResponse
44

55
def a(request): # $requestHandler
66
t = Template("abc").render() # $templateConstruction="abc"
77
return HttpResponse(t) # $HttpResponse
88

99
def b(request): # $requestHandler
10-
# This case is not yet supported
10+
# This case is not currently supported
1111
t = django.template.engines["django"].from_string("abc") # $MISSING:templateConstruction="abc"
1212
return HttpResponse(t) # $HttpResponse
1313

0 commit comments

Comments
 (0)