From 642bb013889cfb6857f614929de31416c703701b Mon Sep 17 00:00:00 2001 From: AudricV <74829229+AudricV@users.noreply.github.com> Date: Thu, 16 Nov 2023 11:35:58 +0100 Subject: [PATCH] [YouTube] Fix testSubscriberCount method of YoutubeChannelExtractorTest.CarouselHeader The subscriber count is now lower than the expected count as some people unsubscribed to the Sports system channel. The expected count has been so lowered. --- .../extractor/services/youtube/YoutubeChannelExtractorTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extractor/src/test/java/org/schabi/newpipe/extractor/services/youtube/YoutubeChannelExtractorTest.java b/extractor/src/test/java/org/schabi/newpipe/extractor/services/youtube/YoutubeChannelExtractorTest.java index 8f10618ed..13c0a9f46 100644 --- a/extractor/src/test/java/org/schabi/newpipe/extractor/services/youtube/YoutubeChannelExtractorTest.java +++ b/extractor/src/test/java/org/schabi/newpipe/extractor/services/youtube/YoutubeChannelExtractorTest.java @@ -714,7 +714,7 @@ public class YoutubeChannelExtractorTest { @Test public void testSubscriberCount() throws Exception { - ExtractorAsserts.assertGreaterOrEqual(75_000_000, extractor.getSubscriberCount()); + ExtractorAsserts.assertGreaterOrEqual(70_000_000, extractor.getSubscriberCount()); } @Test