You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: extractor/src/test/java/org/schabi/newpipe/extractor/services/soundcloud/SoundcloudPlaylistExtractorTest.java
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -94,10 +94,10 @@ public void testThumbnailUrl() {
94
94
assertIsSecureUrl(extractor.getThumbnailUrl());
95
95
}
96
96
97
-
@Ignore
98
97
@Test
99
98
publicvoidtestBannerUrl() {
100
-
assertIsSecureUrl(extractor.getBannerUrl());
99
+
// SoundCloud playlists do not have a banner
100
+
assertNull(extractor.getBannerUrl());
101
101
}
102
102
103
103
@Test
@@ -186,10 +186,10 @@ public void testThumbnailUrl() {
186
186
assertIsSecureUrl(extractor.getThumbnailUrl());
187
187
}
188
188
189
-
@Ignore("not implemented")
190
189
@Test
191
190
publicvoidtestBannerUrl() {
192
-
assertIsSecureUrl(extractor.getBannerUrl());
191
+
// SoundCloud playlists do not have a banner
192
+
assertNull(extractor.getBannerUrl());
193
193
}
194
194
195
195
@Test
@@ -293,10 +293,10 @@ public void testThumbnailUrl() {
0 commit comments