Skip to content

Commit 787ffe7

Browse files
updated parameter name injected in connection integration test
1 parent c27b8ec commit 787ffe7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/integ/test_connection.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -299,11 +299,11 @@ def test_platform_detection_timeout(db_parameters):
299299
"database": db_parameters["database"],
300300
"protocol": db_parameters["protocol"],
301301
"timezone": "UTC",
302-
"platform_detection_timeout": 2.5,
302+
"platform_detection_timeout_seconds": 2.5,
303303
}
304304
cnx = snowflake.connector.connect(**config)
305305
try:
306-
assert cnx.platform_detection_timeout == 2.5
306+
assert cnx.platform_detection_timeout_seconds == 2.5
307307
finally:
308308
cnx.close()
309309

0 commit comments

Comments
 (0)