@@ -11,8 +11,6 @@ async def test_async_call(endpoint, database):
1111 driver_config = ydb .DriverConfig (
1212 endpoint ,
1313 database ,
14- credentials = ydb .construct_credentials_from_environ (),
15- root_certificates = ydb .load_ydb_root_certificate (),
1614 )
1715
1816 driver = Driver (driver_config = driver_config )
@@ -26,8 +24,6 @@ async def test_gzip_compression(endpoint, database):
2624 driver_config = ydb .DriverConfig (
2725 endpoint ,
2826 database ,
29- credentials = ydb .construct_credentials_from_environ (),
30- root_certificates = ydb .load_ydb_root_certificate (),
3127 compression = ydb .RPCCompression .Gzip ,
3228 )
3329
@@ -53,8 +49,6 @@ async def test_session(endpoint, database):
5349 driver_config = ydb .DriverConfig (
5450 endpoint ,
5551 database ,
56- credentials = ydb .construct_credentials_from_environ (),
57- root_certificates = ydb .load_ydb_root_certificate (),
5852 )
5953
6054 driver = Driver (driver_config = driver_config )
@@ -98,8 +92,6 @@ async def test_raises_when_disconnect(endpoint, database, docker_project):
9892 driver_config = ydb .DriverConfig (
9993 endpoint ,
10094 database ,
101- credentials = ydb .construct_credentials_from_environ (),
102- root_certificates = ydb .load_ydb_root_certificate (),
10395 )
10496
10597 driver = Driver (driver_config = driver_config )
@@ -124,8 +116,6 @@ async def test_disconnect_by_call(endpoint, database, docker_project):
124116 driver_config = ydb .DriverConfig (
125117 endpoint ,
126118 database ,
127- credentials = ydb .construct_credentials_from_environ (),
128- root_certificates = ydb .load_ydb_root_certificate (),
129119 )
130120
131121 driver = Driver (driver_config = driver_config )
0 commit comments