diff options
author | H. Lehmann <ByteHamster@users.noreply.github.com> | 2019-10-25 11:38:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-25 11:38:31 +0200 |
commit | a047e34f8eab6cb4ae86907212429e6c2df9a196 (patch) | |
tree | d05487ac68a1604759360c83bed6cbcc887acde9 /app/src/androidTest | |
parent | 405fbd45a54647f20a26183bb795bf87eb20d2b1 (diff) | |
parent | baec984c0ffdf65ede4bd425c2f151096a44bc03 (diff) | |
download | AntennaPod-a047e34f8eab6cb4ae86907212429e6c2df9a196.zip |
Merge pull request #3528 from orionlee/podcast_screen_sort_2524
Sort Support in Podcast screen
Diffstat (limited to 'app/src/androidTest')
-rw-r--r-- | app/src/androidTest/java/de/test/antennapod/storage/DBTestUtils.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/src/androidTest/java/de/test/antennapod/storage/DBTestUtils.java b/app/src/androidTest/java/de/test/antennapod/storage/DBTestUtils.java index 09a8466e6..ebf59fea7 100644 --- a/app/src/androidTest/java/de/test/antennapod/storage/DBTestUtils.java +++ b/app/src/androidTest/java/de/test/antennapod/storage/DBTestUtils.java @@ -44,8 +44,8 @@ class DBTestUtils { PodDBAdapter adapter = PodDBAdapter.getInstance(); adapter.open(); for (int i = 0; i < numFeeds; i++) { - Feed f = new Feed(0, null, "feed " + i, null, "link" + i, "descr", null, null, - null, null, "id" + i, null, null, "url" + i, false, false, null, null, false); + Feed f = new Feed(0, null, "feed " + i, "link" + i, "descr", null, null, + null, null, "id" + i, null, null, "url" + i, false); f.setItems(new ArrayList<>()); for (int j = 0; j < numItems; j++) { FeedItem item = new FeedItem(0, "item " + j, "id" + j, "link" + j, new Date(), |