File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -138,16 +138,16 @@ def test_cert_with_key(self):
138
138
self .assertTupleEqual (('/path/to/cert' , '/path/to/key' ), self .client ._session .cert )
139
139
140
140
def test_cert_path (self ):
141
- self .client = CachedSchemaRegistryClient (url = 'https://127.0.0.1:65534' ,
142
- ca_location = '/path/to/ca' )
143
- self .assertEqual ('/path/to/ca' , self .client ._session .verify )
141
+ self .client = CachedSchemaRegistryClient (url = 'https://127.0.0.1:65534' ,
142
+ ca_location = '/path/to/ca' )
143
+ self .assertEqual ('/path/to/ca' , self .client ._session .verify )
144
144
145
145
def test_context (self ):
146
- with self .client as c :
147
- parsed = avro .loads (data_gen .BASIC_SCHEMA )
148
- schema_id = c .register ('test' , parsed )
149
- self .assertTrue (schema_id > 0 )
150
- self .assertEqual (len (c .id_to_schema ), 1 )
146
+ with self .client as c :
147
+ parsed = avro .loads (data_gen .BASIC_SCHEMA )
148
+ schema_id = c .register ('test' , parsed )
149
+ self .assertTrue (schema_id > 0 )
150
+ self .assertEqual (len (c .id_to_schema ), 1 )
151
151
152
152
def test_init_with_dict (self ):
153
153
self .client = CachedSchemaRegistryClient ({
You can’t perform that action at this time.
0 commit comments