We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92a67bb commit 08949eeCopy full SHA for 08949ee
1 file changed
app/src/test/java/org/schabi/newpipe/player/playqueue/PlayQueueTest.java
@@ -23,7 +23,7 @@
23
@SuppressWarnings("checkstyle:HideUtilityClassConstructor")
24
@RunWith(Enclosed.class)
25
public class PlayQueueTest {
26
- public static PlayQueue mockPlayQueue(final int index, final List<PlayQueueItem> streams) {
+ static PlayQueue mockPlayQueue(final int index, final List<PlayQueueItem> streams) {
27
// I tried using Mockito, but it didn't work for some reason
28
return new PlayQueue(index, streams) {
29
@Override
@@ -38,7 +38,7 @@ public void fetch() {
38
};
39
}
40
41
- public static PlayQueueItem makeItemWithUrl(final String url) {
+ static PlayQueueItem makeItemWithUrl(final String url) {
42
final StreamInfoItem infoItem = new StreamInfoItem(
43
0, url, "", StreamType.VIDEO_STREAM
44
);
0 commit comments