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 c27b8ec commit 787ffe7Copy full SHA for 787ffe7
test/integ/test_connection.py
@@ -299,11 +299,11 @@ def test_platform_detection_timeout(db_parameters):
299
"database": db_parameters["database"],
300
"protocol": db_parameters["protocol"],
301
"timezone": "UTC",
302
- "platform_detection_timeout": 2.5,
+ "platform_detection_timeout_seconds": 2.5,
303
}
304
cnx = snowflake.connector.connect(**config)
305
try:
306
- assert cnx.platform_detection_timeout == 2.5
+ assert cnx.platform_detection_timeout_seconds == 2.5
307
finally:
308
cnx.close()
309
0 commit comments