From 71e1edfeac927689938edab35a739c1ffa26aed3 Mon Sep 17 00:00:00 2001 From: "Santhosh Reddy Vootukuri (SUNNY) (from Dev Box)" Date: Mon, 12 Aug 2024 22:00:03 -0700 Subject: [PATCH] fix failing tests --- meilisearch/tests/index/update_index.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meilisearch/tests/index/update_index.rs b/meilisearch/tests/index/update_index.rs index ab20ad0d4..d1a9357df 100644 --- a/meilisearch/tests/index/update_index.rs +++ b/meilisearch/tests/index/update_index.rs @@ -2,7 +2,9 @@ use time::format_description::well_known::Rfc3339; use time::OffsetDateTime; use crate::common::encoder::Encoder; -use crate::common::Server; +use crate::common::{ + shared_does_not_exists_index, shared_empty_index, shared_index_with_documents, Server, +}; use crate::json; #[actix_rt::test]