1
0
Fork 0
mirror of https://gitlab.com/news-flash/article_scraper.git synced 2025-07-08 16:40:00 +02:00

update to tokio 1.0

This commit is contained in:
Jan Lukas Gernert 2021-01-06 09:53:47 +01:00
parent c607892367
commit 7e05a98f30
3 changed files with 9 additions and 9 deletions

View file

@ -791,7 +791,7 @@ mod tests {
use crate::*;
use reqwest::Client;
#[tokio::test(basic_scheduler)]
#[tokio::test(flavor = "current_thread")]
async fn golem() {
let config_path = PathBuf::from(r"./resources/tests/golem");
let out_path = PathBuf::from(r"./test_output");
@ -810,7 +810,7 @@ mod tests {
assert_eq!(article.author, Some(String::from("Hauke Gierow")));
}
#[tokio::test(basic_scheduler)]
#[tokio::test(flavor = "current_thread")]
async fn phoronix() {
let config_path = PathBuf::from(r"./resources/tests/phoronix");
let out_path = PathBuf::from(r"./test_output");
@ -831,7 +831,7 @@ mod tests {
);
}
#[tokio::test(basic_scheduler)]
#[tokio::test(flavor = "current_thread")]
async fn youtube() {
let config_path = PathBuf::from(r"./resources/tests/");
let url = url::Url::parse("https://www.youtube.com/watch?v=lHRkYLcmFY8").unwrap();