@@ -342,6 +342,8 @@ def test_create_chunk(self, collection_id):
342
342
res = create_chunk (** create_chunk_data )
343
343
res_dict = vars (res )
344
344
assume_chunk_result (create_chunk_data , res_dict )
345
+ records = list_records (collection_id = collection_id , order = "desc" , limit = 20 , after = None , before = None )
346
+
345
347
346
348
@pytest .mark .run (order = 43 )
347
349
def test_list_chunks (self , collection_id ):
@@ -392,6 +394,7 @@ def test_update_chunk(self, collection_id, chunk_id):
392
394
res = update_chunk (** update_chunk_data )
393
395
res_dict = vars (res )
394
396
assume_chunk_result (update_chunk_data , res_dict )
397
+ records = list_records (collection_id = collection_id , order = "desc" , limit = 20 , after = None , before = None )
395
398
396
399
@pytest .mark .run (order = 46 )
397
400
def test_delete_chunk (self , collection_id ):
@@ -410,3 +413,4 @@ def test_delete_chunk(self, collection_id):
410
413
new_chunks = list_chunks (collection_id = collection_id )
411
414
chunk_ids = [chunk .chunk_id for chunk in new_chunks ]
412
415
pytest .assume (chunk_id not in chunk_ids )
416
+ records = list_records (collection_id = collection_id , order = "desc" , limit = 20 , after = None , before = None )
0 commit comments