Change Tokio tests - fix GHA runner (again)

This commit is contained in:
Matthew Esposito 2023-12-30 21:33:27 -05:00
parent cd836308db
commit 6d97f4c8dd
No known key found for this signature in database
5 changed files with 11 additions and 11 deletions

View file

@ -130,7 +130,7 @@ async fn user(name: &str) -> Result<User, String> {
})
}
#[tokio::test(flavor = "multi_thread", worker_threads = 1)]
#[tokio::test(flavor = "multi_thread")]
async fn test_fetching_user() {
let user = user("spez").await;
assert!(user.is_ok());