Skip to content

Commit d1aeffb

Browse files
committed
added additional spelling corrections for execute_concurrent_validate_tuple and rolled back _create_policy() whitespace correction
1 parent ed0a0f2 commit d1aeffb

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

tests/integration/standard/column_encryption/test_policies.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def _recreate_keyspace(self, session):
3636

3737
def _create_policy(self, key, iv = None):
3838
cl_policy = AES256ColumnEncryptionPolicy()
39-
col_desc = ColDesc('foo', ' bar', 'encrypted')
39+
col_desc = ColDesc('foo',' bar','encrypted')
4040
cl_policy.add_column(col_desc, key, "int")
4141
return (col_desc, cl_policy)
4242

tests/integration/standard/test_concurrent.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,22 +117,22 @@ def execute_concurrent_validate_dict(self, num_statements, results):
117117

118118
def test_execute_concurrent(self):
119119
self.execute_concurrent_base(self.execute_concurrent_helper, \
120-
self.execute_concurrent_valiate_tuple)
120+
self.execute_concurrent_validate_tuple)
121121

122122
def test_execute_concurrent_with_args(self):
123123
self.execute_concurrent_base(self.execute_concurrent_args_helper, \
124-
self.execute_concurrent_valiate_tuple, \
124+
self.execute_concurrent_validate_tuple, \
125125
zip_args=False)
126126

127127
def test_execute_concurrent_with_execution_profile(self):
128128
def run_fn(*args, **kwargs):
129129
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)
131131

132132
def test_execute_concurrent_with_args_and_execution_profile(self):
133133
def run_fn(*args, **kwargs):
134134
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)
136136

137137
def test_execute_concurrent_with_args_generator(self):
138138
"""

0 commit comments

Comments
 (0)