From 9636f00e1df59e35fbdd5250d079a1f046c20d62 Mon Sep 17 00:00:00 2001 From: "Bryan A. Jones" Date: Fri, 27 Sep 2024 08:55:58 -0500 Subject: [PATCH] Clean: More cargo fmt fun. (Running cargo fmt locally doesn't help.) --- actix-web/tests/test_httpserver.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actix-web/tests/test_httpserver.rs b/actix-web/tests/test_httpserver.rs index 48b3a54d1..5fd7d7190 100644 --- a/actix-web/tests/test_httpserver.rs +++ b/actix-web/tests/test_httpserver.rs @@ -1,9 +1,9 @@ #[cfg(feature = "openssl")] extern crate tls_openssl as openssl; +use 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() {