removing .await

This commit is contained in:
Santhosh Reddy Vootukuri (SUNNY) (from Dev Box) 2024-09-08 09:52:22 -07:00
parent df49426222
commit 31d460044b

View File

@ -6,7 +6,7 @@ use crate::json;
#[actix_rt::test] #[actix_rt::test]
async fn stats() { async fn stats() {
let server = Server::new_shared().await; let server = Server::new_shared();
let index = server.unique_index(); let index = server.unique_index();
let (task, code) = index.create(Some("id")).await; let (task, code) = index.create(Some("id")).await;