@@ -70,12 +70,12 @@ def create_cluster(cls):
70
70
71
71
cls .select_all_statement = "SELECT * FROM {0}.{0}" .format (cls .ks_name )
72
72
73
- def test_continous_paging (self ):
73
+ def test_continuous_paging (self ):
74
74
"""
75
75
Test to ensure that various continuous paging schemes return the full set of results.
76
76
@since 3.20
77
77
@jira_ticket PYTHON-615
78
- @expected_result various continous paging options should fetch all the results
78
+ @expected_result various continuous paging options should fetch all the results
79
79
80
80
@test_category queries
81
81
"""
@@ -131,9 +131,9 @@ def test_paging_cancel(self):
131
131
self .session_with_profiles .default_fetch_size = 1
132
132
# This combination should fetch one result a second. We should see a very few results
133
133
results = self .session_with_profiles .execute_async (self .select_all_statement , execution_profile = "SLOW" )
134
- result_set = results .result ()
134
+ result_set = results .result ()
135
135
result_set .cancel_continuous_paging ()
136
- result_lst = list (result_set )
136
+ result_lst = list (result_set )
137
137
self .assertLess (len (result_lst ), 2 , "Cancel should have aborted fetch immediately" )
138
138
139
139
def test_con_paging_verify_writes (self ):
@@ -183,7 +183,7 @@ def test_con_paging_verify_writes(self):
183
183
184
184
def test_can_get_results_when_no_more_pages (self ):
185
185
"""
186
- Test to validate that the resutls can be fetched when
186
+ Test to validate that the results can be fetched when
187
187
has_more_pages is False
188
188
@since 3.20
189
189
@jira_ticket PYTHON-946
0 commit comments