diff --git a/module/VuFind/tests/integration-tests/src/View/Helper/Root/ResultFeedTest.php b/module/VuFind/tests/integration-tests/src/View/Helper/Root/ResultFeedTest.php
index 58b351c916d67b58435fb8849c7d70af5d744e2a..d441e0176454bfd77da6eaca3c588266427c0d03 100644
--- a/module/VuFind/tests/integration-tests/src/View/Helper/Root/ResultFeedTest.php
+++ b/module/VuFind/tests/integration-tests/src/View/Helper/Root/ResultFeedTest.php
@@ -46,7 +46,10 @@ class ResultFeedTest extends \VuFindTest\Unit\ViewHelperTestCase
      */
     protected function getPlugins()
     {
-        $recordLink = $this->getMock('VuFind\View\Helper\Root\RecordLink');
+        $recordLink = $this->getMock(
+            'VuFind\View\Helper\Root\RecordLink', array(),
+            array(new \VuFind\Record\Router(new \VuFind\Record\Loader()))
+        );
         $recordLink->expects($this->any())->method('getUrl')
             ->will($this->returnValue('test/url'));
         return array(