yet another try to fix that test -.-

This commit is contained in:
Christian Schabesberger 2016-03-25 20:19:43 +01:00
parent 44d2775437
commit db6613f562
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
}