mirror of
https://github.com/TeamNewPipe/NewPipeExtractor.git
synced 2025-04-29 00:10:35 +05:30
Fix code style
This commit is contained in:
parent
d746d1b288
commit
61ef1699f8
@ -220,6 +220,7 @@ public class YoutubeSearchExtractorTest {
|
|||||||
// Test Overrides
|
// Test Overrides
|
||||||
//////////////////////////////////////////////////////////////////////////*/
|
//////////////////////////////////////////////////////////////////////////*/
|
||||||
|
|
||||||
|
@Override
|
||||||
@Test
|
@Test
|
||||||
public void testMoreRelatedItems() throws Exception {
|
public void testMoreRelatedItems() throws Exception {
|
||||||
final ListExtractor.InfoItemsPage<InfoItem> initialPage = extractor().getInitialPage();
|
final ListExtractor.InfoItemsPage<InfoItem> initialPage = extractor().getInitialPage();
|
||||||
@ -309,7 +310,7 @@ public class YoutubeSearchExtractorTest {
|
|||||||
void testAtLeastOneVerified() throws IOException, ExtractionException {
|
void testAtLeastOneVerified() throws IOException, ExtractionException {
|
||||||
final List<InfoItem> items = extractor.getInitialPage().getItems();
|
final List<InfoItem> items = extractor.getInitialPage().getItems();
|
||||||
boolean verified = false;
|
boolean verified = false;
|
||||||
for (InfoItem item : items) {
|
for (final InfoItem item : items) {
|
||||||
if (((ChannelInfoItem) item).isVerified()) {
|
if (((ChannelInfoItem) item).isVerified()) {
|
||||||
verified = true;
|
verified = true;
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user