summaryrefslogtreecommitdiff
path: root/src/instrumentationTest/de/test/antennapod/syndication/handler/FeedHandlerTest.java
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2013-08-15 13:11:08 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2013-08-15 13:11:08 +0200
commit9073343a950cb81e70ff6352ceea6addf6131925 (patch)
treed06267a4fa3ff54da5ac28e0ae636ec9031083fd /src/instrumentationTest/de/test/antennapod/syndication/handler/FeedHandlerTest.java
parentcc7189613701dd97047fd106a4dc021ad5b7a23c (diff)
downloadAntennaPod-9073343a950cb81e70ff6352ceea6addf6131925.zip
Several bugfixes
Diffstat (limited to 'src/instrumentationTest/de/test/antennapod/syndication/handler/FeedHandlerTest.java')
-rw-r--r--src/instrumentationTest/de/test/antennapod/syndication/handler/FeedHandlerTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/instrumentationTest/de/test/antennapod/syndication/handler/FeedHandlerTest.java b/src/instrumentationTest/de/test/antennapod/syndication/handler/FeedHandlerTest.java
index 030df0fcb..95c3a3dba 100644
--- a/src/instrumentationTest/de/test/antennapod/syndication/handler/FeedHandlerTest.java
+++ b/src/instrumentationTest/de/test/antennapod/syndication/handler/FeedHandlerTest.java
@@ -124,7 +124,7 @@ public class FeedHandlerTest extends AndroidTestCase {
}
private boolean hasValidFeedItems(Feed feed) {
- for (FeedItem item : feed.getItemsArray()) {
+ for (FeedItem item : feed.getItems()) {
if (item.getTitle() == null) {
Log.e(TAG, "Item has no title");
return false;