Skip to content

Commit 6ad71e7

Browse files
Fix
1 parent d072d5e commit 6ad71e7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/unit/test_telemetry.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
FORBIDDEN,
1515
INTERNAL_SERVER_ERROR,
1616
SERVICE_UNAVAILABLE,
17-
UNAUTHORIZED,
1817
)
1918
from src.snowflake.connector.errorcode import (
2019
ER_HTTP_GENERAL_ERROR,
@@ -322,7 +321,7 @@ def test_request_throws_revocation_check_error():
322321
@pytest.mark.parametrize(
323322
"status_code",
324323
[
325-
UNAUTHORIZED, # 401 - non-retryable
324+
401, # 401 - non-retryable
326325
404, # Not Found - non-retryable
327326
402, # Payment Required - non-retryable
328327
406, # Not Acceptable - non-retryable

0 commit comments

Comments
 (0)