@@ -70,12 +70,12 @@ def create_cluster(cls):
7070
7171 cls .select_all_statement = "SELECT * FROM {0}.{0}" .format (cls .ks_name )
7272
73- def test_continous_paging (self ):
73+ def test_continuous_paging (self ):
7474 """
7575 Test to ensure that various continuous paging schemes return the full set of results.
7676 @since 3.20
7777 @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
7979
8080 @test_category queries
8181 """
@@ -131,9 +131,9 @@ def test_paging_cancel(self):
131131 self .session_with_profiles .default_fetch_size = 1
132132 # This combination should fetch one result a second. We should see a very few results
133133 results = self .session_with_profiles .execute_async (self .select_all_statement , execution_profile = "SLOW" )
134- result_set = results .result ()
134+ result_set = results .result ()
135135 result_set .cancel_continuous_paging ()
136- result_lst = list (result_set )
136+ result_lst = list (result_set )
137137 self .assertLess (len (result_lst ), 2 , "Cancel should have aborted fetch immediately" )
138138
139139 def test_con_paging_verify_writes (self ):
@@ -183,7 +183,7 @@ def test_con_paging_verify_writes(self):
183183
184184 def test_can_get_results_when_no_more_pages (self ):
185185 """
186- Test to validate that the resutls can be fetched when
186+ Test to validate that the results can be fetched when
187187 has_more_pages is False
188188 @since 3.20
189189 @jira_ticket PYTHON-946
0 commit comments