fix: address CodeQL URL substring sanitization false positives in tests

Agent-Logs-Url: https://github.com/christianlouis/InboxConverge/sessions/8cb47b1c-b744-4212-8b6d-8132d6642d98

Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-04-05 15:12:32 +00:00
committed by GitHub
parent 58f9ad72ed
commit 149ff3d997
2 changed files with 5 additions and 3 deletions
+2 -2
View File
@@ -77,7 +77,7 @@ class TestExtractGrantedScopes:
def test_dict_format(self):
data = {"granted_scopes": ["https://mail.google.com/", "openid"]}
result = extract_granted_scopes(data)
assert "https://mail.google.com/" in result
assert result == ["https://mail.google.com/", "openid"]
def test_dict_missing_granted_scopes(self):
result = extract_granted_scopes({})
@@ -124,7 +124,7 @@ class TestBuildGmailCredentialScopes:
)
assert "granted_scopes" in result
assert "import_label_templates" in result
assert "https://mail.google.com/" in result["granted_scopes"]
assert result["granted_scopes"] == ["https://mail.google.com/"]
def test_none_granted_scopes(self):
result = build_gmail_credential_scopes(None)