From db6613f5623e13b0c191959a0075c00b6b8a104e Mon Sep 17 00:00:00 2001 From: Christian Schabesberger Date: Fri, 25 Mar 2016 20:19:43 +0100 Subject: [PATCH] yet another try to fix that test -.- --- .../newpipe/extractor/youtube/YoutubeSearchEngineTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/androidTest/java/org/schabi/newpipe/extractor/youtube/YoutubeSearchEngineTest.java b/app/src/androidTest/java/org/schabi/newpipe/extractor/youtube/YoutubeSearchEngineTest.java index 1a22852bc..c7253d238 100644 --- a/app/src/androidTest/java/org/schabi/newpipe/extractor/youtube/YoutubeSearchEngineTest.java +++ b/app/src/androidTest/java/org/schabi/newpipe/extractor/youtube/YoutubeSearchEngineTest.java @@ -96,7 +96,7 @@ public class YoutubeSearchEngineTest extends AndroidTestCase { // that specific link used for this test, there are no videos with less // than 10.000 views, so we can test against that. for(StreamPreviewInfo i : result.resultList) { - assertTrue(i.title + ": " + Long.toString(i.view_count), i.view_count >= 10000); + assertTrue(i.title + ": " + Long.toString(i.view_count), i.view_count >= 1000); } }