File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ class TestTrustSystemCertsConfig(TestSecureScheme):
121121 schemes = "neo4j" , "bolt"
122122 feature_requirement = types .Feature .API_SSL_CONFIG ,
123123 extra_driver_configs = (
124- {"encrypted" : True , "trustedCertificates " : None },
124+ {"encrypted" : True , "trusted_certificates " : None },
125125 {"encrypted" : True },
126126 )
127127
@@ -143,9 +143,9 @@ def test_unencrypted(self):
143143
144144class TestTrustCustomCertsConfig (TestTrustSystemCertsConfig ):
145145 extra_driver_configs = (
146- {"encrypted" : True , "trustedCertificates " : ["customRoot.crt" ]},
147- {"encrypted" : True , "trustedCertificates" : [ "customRoot2.crt" ,
148- "customRoot.crt" ]},
146+ {"encrypted" : True , "trusted_certificates " : ["customRoot.crt" ]},
147+ {"encrypted" : True ,
148+ "trusted_certificates" : [ "customRoot2.crt" , "customRoot.crt" ]},
149149 )
150150 cert_prefix = "customRoot_"
151151
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ def test_unencrypted(self):
132132class TestTrustAllCertsConfig (TestSelfSignedScheme ):
133133 schemes = "neo4j" , "bolt"
134134 feature_requirement = types .Feature .API_SSL_CONFIG ,
135- extra_driver_configs = {"encrypted" : True , "trustedCertificates " : []},
135+ extra_driver_configs = {"encrypted" : True , "trusted_certificates " : []},
136136
137137 def test_trusted_ca_correct_hostname (self ):
138138 super ().test_trusted_ca_correct_hostname ()
You can’t perform that action at this time.
0 commit comments