@@ -470,7 +470,7 @@ def _run_test_schema_fetch_disable(self, con, mode=None):
470
470
else :
471
471
self .assertEqual (con .schema_version , 0 )
472
472
self .assertEqual (con .schema , None )
473
- for method_case in self .testing_methods ['unavailable' ]. keys () :
473
+ for method_case in self .testing_methods ['unavailable' ]:
474
474
with self .subTest (name = method_case ):
475
475
if isinstance (con , tarantool .ConnectionPool ) and method_case == 'space' :
476
476
continue
@@ -488,7 +488,7 @@ def _run_test_schema_fetch_disable(self, con, mode=None):
488
488
'connection opened with fetch_schema=False' )
489
489
# Testing the schemaless connection with methods
490
490
# that should be available.
491
- for method_case in self .testing_methods ['available' ]. keys () :
491
+ for method_case in self .testing_methods ['available' ]:
492
492
with self .subTest (name = method_case ):
493
493
testing_function = getattr (con , method_case )
494
494
if mode is not None :
@@ -514,7 +514,7 @@ def _run_test_schema_fetch_disable(self, con, mode=None):
514
514
515
515
# Testing the schemaful connection with methods
516
516
# that should NOW be available.
517
- for method_case in self .testing_methods ['unavailable' ]. keys () :
517
+ for method_case in self .testing_methods ['unavailable' ]:
518
518
with self .subTest (name = method_case ):
519
519
if isinstance (con , tarantool .ConnectionPool ) and method_case == 'space' :
520
520
continue
@@ -534,7 +534,7 @@ def _run_test_schema_fetch_disable(self, con, mode=None):
534
534
self .testing_methods ['unavailable' ][method_case ]['output' ])
535
535
# Testing the schemaful connection with methods
536
536
# that should have remained available.
537
- for method_case in self .testing_methods ['available' ]. keys () :
537
+ for method_case in self .testing_methods ['available' ]:
538
538
with self .subTest (name = method_case ):
539
539
testing_function = getattr (con , method_case )
540
540
if mode is not None :
0 commit comments