File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
python/ql/test/library-tests/frameworks/aiohttp Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6,9 +6,9 @@ async def test():
6
6
resp = await s .request ("method" , "url" ) # $ clientRequestUrlPart="url"
7
7
resp = await s .request ("method" , url = "url" ) # $ clientRequestUrlPart="url"
8
8
9
- with aiohttp .ClientSession () as session :
10
- resp = await session .get ("url" ) # $ clientRequestUrlPart="url"
11
- resp = await session .request (method = "GET" , url = "url" ) # $ clientRequestUrlPart="url"
9
+ async with aiohttp .ClientSession () as session :
10
+ resp = await session .get ("url" ) # $ MISSING: clientRequestUrlPart="url"
11
+ resp = await session .request (method = "GET" , url = "url" ) # $ MISSING: clientRequestUrlPart="url"
12
12
13
13
# other methods than GET
14
14
s = aiohttp .ClientSession ()
You can’t perform that action at this time.
0 commit comments