[YouTube] Test that no banner is returned for carouselHeaderRenders

This commit is contained in:
AudricV 2023-08-01 22:19:43 +02:00
parent f1fa84b4e3
commit bb1ab166bf
No known key found for this signature in database
GPG Key ID: DA92EC7905614198
1 changed files with 3 additions and 1 deletions

View File

@ -2,6 +2,7 @@ package org.schabi.newpipe.extractor.services.youtube;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertNull;
import static org.junit.jupiter.api.Assertions.assertThrows;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.junit.jupiter.api.Assertions.fail;
@ -720,7 +721,8 @@ public class YoutubeChannelExtractorTest {
@Test
public void testBannerUrl() throws Exception {
// CarouselHeaderRender does not contain a banner
// CarouselHeaderRenders do not contain a banner
assertNull(extractor.getBannerUrl());
}
@Test