removing .await

This commit is contained in:
Santhosh Reddy Vootukuri (SUNNY) (from Dev Box) 2024-09-08 09:52:22 -07:00 committed by Martin Tzvetanov Grigorov
parent 0e9040e605
commit 248c90bad5
No known key found for this signature in database
GPG Key ID: 3194FD8C1AE300EF

View File

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