Skip to content

Commit 61ef169

Browse files
committed
Fix code style
1 parent d746d1b commit 61ef169

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

extractor/src/test/java/org/schabi/newpipe/extractor/services/youtube/search/YoutubeSearchExtractorTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,7 @@ public static void setUp() throws Exception {
220220
// Test Overrides
221221
//////////////////////////////////////////////////////////////////////////*/
222222

223+
@Override
223224
@Test
224225
public void testMoreRelatedItems() throws Exception {
225226
final ListExtractor.InfoItemsPage<InfoItem> initialPage = extractor().getInitialPage();
@@ -309,7 +310,7 @@ public static void setUp() throws Exception {
309310
void testAtLeastOneVerified() throws IOException, ExtractionException {
310311
final List<InfoItem> items = extractor.getInitialPage().getItems();
311312
boolean verified = false;
312-
for (InfoItem item : items) {
313+
for (final InfoItem item : items) {
313314
if (((ChannelInfoItem) item).isVerified()) {
314315
verified = true;
315316
break;

0 commit comments

Comments
 (0)