From f1de281574bdcda8db00af4a21326503e7fbf8f9 Mon Sep 17 00:00:00 2001 From: "Bryan A. Jones" Date: Thu, 26 Sep 2024 17:42:24 -0500 Subject: [PATCH] Clean: Lint. --- actix-web/tests/test_httpserver.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/actix-web/tests/test_httpserver.rs b/actix-web/tests/test_httpserver.rs index 67284ef9f..7de9b6d52 100644 --- a/actix-web/tests/test_httpserver.rs +++ b/actix-web/tests/test_httpserver.rs @@ -1,10 +1,8 @@ #[cfg(feature = "openssl")] extern crate tls_openssl as openssl; -use { - actix_web::{web, App, HttpResponse, HttpServer}, - std::{sync::mpsc, thread, time::Duration}, -}; +use actix_web::{web, App, HttpResponse, HttpServer}; +use std::{sync::mpsc, thread, time::Duration}; #[actix_rt::test] async fn test_start() {