[skip e2e] Remove unused commented code (#14155)

Signed-off-by: ThreadDao <yufen.zong@zilliz.com>
pull/14164/head
ThreadDao 2021-12-24 13:52:22 +08:00 committed by GitHub
parent 74128129bd
commit cc08dd2ae2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 6 deletions

View File

@ -981,10 +981,6 @@ class TestCollectionOperation(TestcaseBase):
******************************************************************
"""
# def teardown_method(self):
# if self.self.collection_wrap is not None and self.self.collection_wrap.collection is not None:
# self.self.collection_wrap.drop()
@pytest.mark.tags(CaseLabel.L2)
def test_collection_without_connection(self):
"""
@ -1073,7 +1069,7 @@ class TestCollectionOperation(TestcaseBase):
c_name = cf.gen_unique_str(prefix)
self.collection_wrap.init_collection(c_name, schema=schema, check_task=CheckTasks.check_collection_property,
check_items={exp_name: c_name, exp_schema: schema})
@pytest.mark.tags(CaseLabel.L2)
def test_load_collection_after_load_partition(self):
"""
@ -1122,7 +1118,6 @@ class TestCollectionOperation(TestcaseBase):
collection_w.release()
class TestCollectionDataframe(TestcaseBase):
"""
******************************************************************