diff options
author | daniel oeh <daniel.oeh@gmail.com> | 2013-08-15 13:11:08 +0200 |
---|---|---|
committer | daniel oeh <daniel.oeh@gmail.com> | 2013-08-15 13:11:08 +0200 |
commit | 9073343a950cb81e70ff6352ceea6addf6131925 (patch) | |
tree | d06267a4fa3ff54da5ac28e0ae636ec9031083fd /src/instrumentationTest/de/test/antennapod/syndication/handler | |
parent | cc7189613701dd97047fd106a4dc021ad5b7a23c (diff) | |
download | AntennaPod-9073343a950cb81e70ff6352ceea6addf6131925.zip |
Several bugfixes
Diffstat (limited to 'src/instrumentationTest/de/test/antennapod/syndication/handler')
-rw-r--r-- | src/instrumentationTest/de/test/antennapod/syndication/handler/FeedHandlerTest.java | 2 |
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; |