Skip to content

Commit 15ae2e3

Browse files
Update test.py
1 parent a5729e0 commit 15ae2e3

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

test.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,14 @@ def hello():
2929

3030

3131

32+
requests.request('GET', 'https://example.domain', verify=False) # Noncompliant
33+
requests.get('https://example.domain', verify=False) # Noncompliant
34+
35+
36+
requests.request('GET', 'http://example.domain', verify=False) # Noncompliant
37+
requests.get('http://example.domain', verify=False) # Noncompliant
38+
39+
3240
requests.request('GET', 'https://example.domain', verify=False) # Noncompliant
3341
requests.get('https://example.domain', verify=False) # Noncompliant
3442

0 commit comments

Comments
 (0)