Skip to content

Commit

Permalink
Fix bad method usage
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Nied <[email protected]>
  • Loading branch information
peternied committed Aug 12, 2024
1 parent a908609 commit 6153e06
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from console_link.cli import Context

from common_operations import (get_index, create_index, delete_index, get_document, create_document, delete_document,
check_doc_match, check_doc_counts_match, generate_large_doc, execute_api_call,
check_doc_match, check_doc_counts_match, generate_large_doc, execute_api_call, refresh_cluster
wait_for_running_replayer, EXPECTED_BENCHMARK_DOCS)
from metric_operations import assert_metrics_present

Expand Down Expand Up @@ -117,8 +117,8 @@ def test_replayer_0002_single_document(self):
doc_id = "replayer_0002_doc"

def refreshClusters():
source_cluster.refresh_cluster()
target_cluster.refresh_cluster()
refresh_cluster(source_cluster)
refresh_cluster(target_cluster)

create_index(cluster=source_cluster, index_name=index_name, test_case=self)
refreshClusters()
Expand Down

0 comments on commit 6153e06

Please sign in to comment.