tests: remove channel mobile/tv banner assertion

This commit is contained in:
ThetaDev 2024-02-13 15:22:52 +01:00
parent 8950c3bd04
commit df9da157de
No known key found for this signature in database
GPG key ID: E319D3C5148D65B6

View file

@ -831,8 +831,6 @@ fn channel_shorts(rp: RustyPipe) {
Some("https://www.youtube.com/@Doobydobap")
);
assert!(!channel.banner.is_empty(), "got no banners");
assert!(!channel.mobile_banner.is_empty(), "got no mobile banners");
assert!(!channel.tv_banner.is_empty(), "got no tv banners");
assert!(
!channel.content.items.is_empty() && !channel.content.is_exhausted(),
@ -930,8 +928,6 @@ fn assert_channel_eevblog<T>(channel: &Channel<T>) {
Some("https://www.youtube.com/@EEVblog")
);
assert!(!channel.banner.is_empty(), "got no banners");
assert!(!channel.mobile_banner.is_empty(), "got no mobile banners");
assert!(!channel.tv_banner.is_empty(), "got no tv banners");
}
#[rstest]