Skip to content

Commit 64af6ac

Browse files
committed
rename order-change-checking method
1 parent 785b46a commit 64af6ac

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/integration/long/test_loadbalancingpolicies.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ def test_token_aware_with_shuffle_rf2(self):
533533
keyspace = 'test_token_aware_with_rf_2'
534534
cluster, session = self._set_up_shuffle_test(keyspace, replication_factor=2)
535535

536-
self._check_different_query_order(session=session, keyspace=keyspace)
536+
self._check_query_order_changes(session=session, keyspace=keyspace)
537537

538538
#check TokenAwarePolicy still return the remaining replicas when one goes down
539539
self.coordinator_stats.reset_counts()
@@ -556,7 +556,7 @@ def _set_up_shuffle_test(self, keyspace, replication_factor):
556556
create_schema(cluster, session, keyspace, replication_factor=replication_factor)
557557
return cluster, session
558558

559-
def _check_different_query_order(self, session, keyspace):
559+
def _check_query_order_changes(self, session, keyspace):
560560
LIMIT_TRIES = 20
561561

562562
query_counts = set()
@@ -591,7 +591,7 @@ def test_token_aware_with_shuffle_rf3(self):
591591
keyspace = 'test_token_aware_with_rf_3'
592592
cluster, session = self._set_up_shuffle_test(keyspace, replication_factor=3)
593593

594-
self._check_different_query_order(session=session, keyspace=keyspace)
594+
self._check_query_order_changes(session=session, keyspace=keyspace)
595595

596596
# check TokenAwarePolicy still return the remaining replicas when one goes down
597597
self.coordinator_stats.reset_counts()

0 commit comments

Comments
 (0)