Fix tests

This commit is contained in:
Mubelotix
2025-07-21 16:09:37 +02:00
parent b1d3a8c58f
commit 381eddd1f8

View File

@ -4,9 +4,8 @@ use std::env::VarError;
use meili_snap::{json_string, snapshot}; use meili_snap::{json_string, snapshot};
use crate::common::{GetAllDocumentsOptions, Value}; use crate::common::{GetAllDocumentsOptions, Server, Value};
use crate::json; use crate::json;
use crate::vector::get_server_vector;
pub enum Endpoint { pub enum Endpoint {
/// Deprecated, undocumented endpoint /// Deprecated, undocumented endpoint
@ -92,7 +91,7 @@ async fn test_both_apis() {
return; return;
}; };
let server = get_server_vector().await; let server = Server::new().await;
let index = server.index("doggo"); let index = server.index("doggo");