From 562b88da9e8fb64c46d7ead11788ba3eaed68fc1 Mon Sep 17 00:00:00 2001 From: Felix Ableitner Date: Tue, 17 May 2022 16:26:36 +0200 Subject: [PATCH] Remove youtube metadata test --- crates/api_common/src/request.rs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/crates/api_common/src/request.rs b/crates/api_common/src/request.rs index 7e3b2152c..fa48e8703 100644 --- a/crates/api_common/src/request.rs +++ b/crates/api_common/src/request.rs @@ -252,16 +252,6 @@ mod tests { }, sample_res ); - - let youtube_url = Url::parse("https://www.youtube.com/watch?v=IquO_TcMZIQ").unwrap(); - let youtube_res = fetch_site_metadata(&client, &youtube_url).await.unwrap(); - assert_eq!( - SiteMetadata { - title: Some("A Hard Look at Rent and Rent Seeking with Michael Hudson & Pepe Escobar".to_string()), - description: Some("An interactive discussion on wealth inequality and the “Great Game” on the control of natural resources.In this webinar organized jointly by the Henry George...".to_string()), - image: Some(Url::parse("https://i.ytimg.com/vi/IquO_TcMZIQ/maxresdefault.jpg").unwrap()), - html: None, - }, youtube_res); } // #[test]