@@ -117,22 +117,22 @@ def execute_concurrent_validate_dict(self, num_statements, results):
117
117
118
118
def test_execute_concurrent (self ):
119
119
self .execute_concurrent_base (self .execute_concurrent_helper , \
120
- self .execute_concurrent_valiate_tuple )
120
+ self .execute_concurrent_validate_tuple )
121
121
122
122
def test_execute_concurrent_with_args (self ):
123
123
self .execute_concurrent_base (self .execute_concurrent_args_helper , \
124
- self .execute_concurrent_valiate_tuple , \
124
+ self .execute_concurrent_validate_tuple , \
125
125
zip_args = False )
126
126
127
127
def test_execute_concurrent_with_execution_profile (self ):
128
128
def run_fn (* args , ** kwargs ):
129
129
return self .execute_concurrent_helper (* args , execution_profile = EXEC_PROFILE_DICT , ** kwargs )
130
- self .execute_concurrent_base (run_fn , self .execute_concurrent_valiate_dict )
130
+ self .execute_concurrent_base (run_fn , self .execute_concurrent_validate_dict )
131
131
132
132
def test_execute_concurrent_with_args_and_execution_profile (self ):
133
133
def run_fn (* args , ** kwargs ):
134
134
return self .execute_concurrent_args_helper (* args , execution_profile = EXEC_PROFILE_DICT , ** kwargs )
135
- self .execute_concurrent_base (run_fn , self .execute_concurrent_valiate_dict , zip_args = False )
135
+ self .execute_concurrent_base (run_fn , self .execute_concurrent_validate_dict , zip_args = False )
136
136
137
137
def test_execute_concurrent_with_args_generator (self ):
138
138
"""
0 commit comments