Clean: More cargo fmt fun. (Running cargo fmt locally doesn't help.)

This commit is contained in:
Bryan A. Jones 2024-09-27 08:55:58 -05:00
parent 87c5233f42
commit 9636f00e1d
Failed to extract signature
1 changed files with 1 additions and 1 deletions

View File

@ -1,9 +1,9 @@
#[cfg(feature = "openssl")] #[cfg(feature = "openssl")]
extern crate tls_openssl as openssl; extern crate tls_openssl as openssl;
use std::{sync::mpsc, thread, time::Duration};
use actix_web::{web, App, HttpResponse, HttpServer}; use actix_web::{web, App, HttpResponse, HttpServer};
use std::{sync::mpsc, thread, time::Duration};
#[actix_rt::test] #[actix_rt::test]
async fn test_start() { async fn test_start() {