@@ -11,8 +11,6 @@ async def test_async_call(endpoint, database):
11
11
driver_config = ydb .DriverConfig (
12
12
endpoint ,
13
13
database ,
14
- credentials = ydb .construct_credentials_from_environ (),
15
- root_certificates = ydb .load_ydb_root_certificate (),
16
14
)
17
15
18
16
driver = Driver (driver_config = driver_config )
@@ -26,8 +24,6 @@ async def test_gzip_compression(endpoint, database):
26
24
driver_config = ydb .DriverConfig (
27
25
endpoint ,
28
26
database ,
29
- credentials = ydb .construct_credentials_from_environ (),
30
- root_certificates = ydb .load_ydb_root_certificate (),
31
27
compression = ydb .RPCCompression .Gzip ,
32
28
)
33
29
@@ -53,8 +49,6 @@ async def test_session(endpoint, database):
53
49
driver_config = ydb .DriverConfig (
54
50
endpoint ,
55
51
database ,
56
- credentials = ydb .construct_credentials_from_environ (),
57
- root_certificates = ydb .load_ydb_root_certificate (),
58
52
)
59
53
60
54
driver = Driver (driver_config = driver_config )
@@ -98,8 +92,6 @@ async def test_raises_when_disconnect(endpoint, database, docker_project):
98
92
driver_config = ydb .DriverConfig (
99
93
endpoint ,
100
94
database ,
101
- credentials = ydb .construct_credentials_from_environ (),
102
- root_certificates = ydb .load_ydb_root_certificate (),
103
95
)
104
96
105
97
driver = Driver (driver_config = driver_config )
@@ -124,8 +116,6 @@ async def test_disconnect_by_call(endpoint, database, docker_project):
124
116
driver_config = ydb .DriverConfig (
125
117
endpoint ,
126
118
database ,
127
- credentials = ydb .construct_credentials_from_environ (),
128
- root_certificates = ydb .load_ydb_root_certificate (),
129
119
)
130
120
131
121
driver = Driver (driver_config = driver_config )
0 commit comments