summaryrefslogtreecommitdiffstats
path: root/tests/Integration/IntegrationTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Integration/IntegrationTest.php')
-rw-r--r--tests/Integration/IntegrationTest.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/Integration/IntegrationTest.php b/tests/Integration/IntegrationTest.php
index c14d3007a..f14a1263b 100644
--- a/tests/Integration/IntegrationTest.php
+++ b/tests/Integration/IntegrationTest.php
@@ -124,7 +124,10 @@ abstract class IntegrationTest extends \Test\TestCase {
$feed = new FeedFixture($feedFixture);
$feed->setFolderId($folderId);
$feedId = $this->loadFixture($feed);
- $this->loadItemFixtures($feedFixture['items'], $feedId);
+
+ if (!empty($feedFixture['items'])) {
+ $this->loadItemFixtures($feedFixture['items'], $feedId);
+ }
}
}