2
0
mirror of https://github.com/TeamNewPipe/NewPipeExtractor synced 2025-08-31 14:26:14 +00:00

Fix code style

This commit is contained in:
litetex
2025-02-09 20:37:59 +01:00
parent d746d1b288
commit 61ef1699f8

View File

@@ -220,6 +220,7 @@ public class YoutubeSearchExtractorTest {
// Test Overrides
//////////////////////////////////////////////////////////////////////////*/
@Override
@Test
public void testMoreRelatedItems() throws Exception {
final ListExtractor.InfoItemsPage<InfoItem> initialPage = extractor().getInitialPage();
@@ -309,7 +310,7 @@ public class YoutubeSearchExtractorTest {
void testAtLeastOneVerified() throws IOException, ExtractionException {
final List<InfoItem> items = extractor.getInitialPage().getItems();
boolean verified = false;
for (InfoItem item : items) {
for (final InfoItem item : items) {
if (((ChannelInfoItem) item).isVerified()) {
verified = true;
break;