Skip to content

Commit 3b1c8e8

Browse files
committed
Try to suppress another verify=False
1 parent 3f3d133 commit 3b1c8e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_e2e.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1323,7 +1323,7 @@ def test_at_pop_calling_pattern(self):
13231323
# We skip it here because this test case has not yet initialize self.app
13241324
# assert self.app.is_pop_supported()
13251325
api_endpoint = "https://20.190.132.47/beta/me"
1326-
resp = requests.get(api_endpoint, verify=False)
1326+
resp = requests.get(api_endpoint, verify=False) # @suppress py/bandit/requests-ssl-verify-disabled
13271327
self.assertEqual(resp.status_code, 401, "Initial call should end with an http 401 error")
13281328
result = self._get_shr_pop(**dict(
13291329
self.get_lab_user(usertype="cloud"), # This is generally not the current laptop's default AAD account

0 commit comments

Comments
 (0)