diff --git a/tests/resources.rs b/tests/resources.rs index 9765f3c..1554058 100644 --- a/tests/resources.rs +++ b/tests/resources.rs @@ -14,18 +14,3 @@ async fn favicon() { assert!(response.status().is_success()); } - -#[actix_rt::test] -async fn tacit_css() { - let test_app = util::spawn_app().await; - - let client = awc::Client::default(); - - let response = client - .get(&format!("{}/tacit-css.min.css", test_app.address)) - .send() - .await - .expect("Failed to execute request"); - - assert!(response.status().is_success()); -}