Remove unnecessary testcase

This commit is contained in:
Valentin Brandl 2022-08-23 09:45:05 +02:00
parent a68a49f6ae
commit 95c54b95c1
No known key found for this signature in database
GPG Key ID: 62E7C7F2C48DBBF2

View File

@ -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());
}