From b95b38c6555733940e8f95d36a28a2aede5753d1 Mon Sep 17 00:00:00 2001 From: zhuwenxing Date: Thu, 30 Jun 2022 11:34:18 +0800 Subject: [PATCH] Fix import in testcase (#17939) Signed-off-by: zhuwenxing --- tests/python_client/loadbalance/test_auto_load_balance.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/python_client/loadbalance/test_auto_load_balance.py b/tests/python_client/loadbalance/test_auto_load_balance.py index 09ea205305..80ee58f6b2 100644 --- a/tests/python_client/loadbalance/test_auto_load_balance.py +++ b/tests/python_client/loadbalance/test_auto_load_balance.py @@ -1,10 +1,11 @@ from time import sleep from pymilvus import connections, list_collections, utility from chaos.checker import (CreateChecker, InsertFlushChecker, - SearchChecker, QueryChecker, IndexChecker, Op, assert_statistic) + SearchChecker, QueryChecker, IndexChecker, Op) from common.milvus_sys import MilvusSys from utils.util_log import test_log as log from chaos import chaos_commons as cc +from chaos.chaos_commons import assert_statistic from common.common_type import CaseLabel from common import common_func as cf from chaos import constants