We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d072d5e commit 6ad71e7Copy full SHA for 6ad71e7
test/unit/test_telemetry.py
@@ -14,7 +14,6 @@
14
FORBIDDEN,
15
INTERNAL_SERVER_ERROR,
16
SERVICE_UNAVAILABLE,
17
- UNAUTHORIZED,
18
)
19
from src.snowflake.connector.errorcode import (
20
ER_HTTP_GENERAL_ERROR,
@@ -322,7 +321,7 @@ def test_request_throws_revocation_check_error():
322
321
@pytest.mark.parametrize(
323
"status_code",
324
[
325
- UNAUTHORIZED, # 401 - non-retryable
+ 401, # 401 - non-retryable
326
404, # Not Found - non-retryable
327
402, # Payment Required - non-retryable
328
406, # Not Acceptable - non-retryable
0 commit comments