summaryrefslogtreecommitdiff
path: root/core/src/test
diff options
context:
space:
mode:
authororionlee <orionlee@yahoo.com>2019-11-05 10:14:07 -0800
committerorionlee <orionlee@yahoo.com>2019-11-05 12:34:11 -0800
commit6e019f72de951acb21cec433a4da6cb64a103082 (patch)
tree3771b97ef64691708bcb5d7c319fa9764132b87b /core/src/test
parentb80973bc303df5d51c4a677e2d65084eb3b938e8 (diff)
downloadAntennaPod-6e019f72de951acb21cec433a4da6cb64a103082.zip
code style / comment tweak per review
Diffstat (limited to 'core/src/test')
-rw-r--r--core/src/test/java/de/danoeh/antennapod/core/storage/ItemEnqueuePositionCalculatorTest.java8
1 files changed, 0 insertions, 8 deletions
diff --git a/core/src/test/java/de/danoeh/antennapod/core/storage/ItemEnqueuePositionCalculatorTest.java b/core/src/test/java/de/danoeh/antennapod/core/storage/ItemEnqueuePositionCalculatorTest.java
index 68eb434a4..40ffd26b4 100644
--- a/core/src/test/java/de/danoeh/antennapod/core/storage/ItemEnqueuePositionCalculatorTest.java
+++ b/core/src/test/java/de/danoeh/antennapod/core/storage/ItemEnqueuePositionCalculatorTest.java
@@ -189,17 +189,13 @@ public class ItemEnqueuePositionCalculatorTest {
// A shallow copy, as the test code will manipulate the queue
List<FeedItem> queue = new ArrayList<>(queueInitial);
-
// Test body
-
Playable currentlyPlaying = getCurrentlyPlaying(idCurrentlyPlaying);
-
// User clicks download on feed item 101
FeedItem tFI101 = setAsDownloading(101, stubDownloadStateProvider);
doAddToQueueAndAssertResult(message + " (1st download)",
calculator, tFI101, queue, currentlyPlaying,
idsExpectedAfter101);
-
// Then user clicks download on feed item 102
FeedItem tFI102 = setAsDownloading(102, stubDownloadStateProvider);
doAddToQueueAndAssertResult(message + " (2nd download, it should preserve order of download)",
@@ -225,10 +221,6 @@ public class ItemEnqueuePositionCalculatorTest {
}
- // Common helpers:
- // - common queue (of items) for tests
- // - construct FeedItems for tests
-
static void doAddToQueueAndAssertResult(String message,
ItemEnqueuePositionCalculator calculator,
FeedItem itemToAdd,