From b04f08b0c4ba2c0524340b9b148d942fd711ecf5 Mon Sep 17 00:00:00 2001 From: "zhenshan.cao" Date: Sat, 26 Jun 2021 21:52:14 +0800 Subject: [PATCH] Rename InsertFutue to MutationFuture (#6144) Signed-off-by: zhenshan.cao --- tests/python_test/conftest.py | 4 ++-- tests/python_test/requirements.txt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/python_test/conftest.py b/tests/python_test/conftest.py index 2d664c3a6..98a16c1cc 100644 --- a/tests/python_test/conftest.py +++ b/tests/python_test/conftest.py @@ -86,8 +86,8 @@ def change_mutation_result_to_primary_keys(): raise e return change - from pymilvus import InsertFuture - InsertFuture.result = insert_future_decorator(InsertFuture.result) + from pymilvus import MutationFuture + MutationFuture.result = insert_future_decorator(MutationFuture.result) def insert_decorator(func): @functools.wraps(func) diff --git a/tests/python_test/requirements.txt b/tests/python_test/requirements.txt index c342e1e03..418994ed0 100644 --- a/tests/python_test/requirements.txt +++ b/tests/python_test/requirements.txt @@ -12,7 +12,7 @@ pytest-print==0.2.1 pytest-level==0.1.1 pytest-xdist==2.2.1 pytest-parallel -pymilvus-orm==2.0a1.dev58 +pymilvus-orm==2.0a1.dev59 pytest-rerunfailures==9.1.1 git+https://github.com/Projectplace/pytest-tags ndg-httpsclient -- GitLab