Skip to content

Commit ef9999a

Browse files
Rasmus Lerchedahl PetersenRasmus Lerchedahl Petersen
authored andcommitted
Python: fix test annotation
1 parent 37ad59a commit ef9999a

File tree

1 file changed

+1
-1
lines changed
  • python/ql/test/experimental/library-tests/frameworks/django-v2-v3

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def post_params_xss(request): # $routeHandler
1818

1919
def http_resp_write(request): # $routeHandler
2020
rsp = HttpResponse() # $HttpResponse
21-
rsp.write(request.GET.get("untrusted"))
21+
rsp.write(request.GET.get("untrusted")) # $HttpResponse
2222
return rsp
2323

2424

0 commit comments

Comments
 (0)