From 176f864e57e746c5f93a73b756acd9e5fd71367b Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Mon, 26 Feb 2018 15:02:52 -0500 Subject: [PATCH] Fixed broken test. --- .../src/VuFindTest/Mink/CollectionsTest.php | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/CollectionsTest.php b/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/CollectionsTest.php index dc9bd75ba5e..de4bf347eb2 100644 --- a/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/CollectionsTest.php +++ b/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/CollectionsTest.php @@ -73,6 +73,11 @@ class CollectionsTest extends \VuFindTest\Unit\MinkTestCase public function testBasic() { $this->changeConfigs([ + 'config' => [ + 'Collections' => [ + 'collections' => true + ], + ], 'HierarchyDefault' => [ 'Collections' => [ 'link_type' => 'Top' @@ -92,6 +97,11 @@ class CollectionsTest extends \VuFindTest\Unit\MinkTestCase public function testKeywordFilter() { $this->changeConfigs([ + 'config' => [ + 'Collections' => [ + 'collections' => true + ], + ], 'HierarchyDefault' => [ 'Collections' => [ 'link_type' => 'Top' @@ -120,7 +130,10 @@ class CollectionsTest extends \VuFindTest\Unit\MinkTestCase 'config' => [ 'Hierarchy' => [ 'showTree' => true - ] + ], + 'Collections' => [ + 'collections' => true + ], ], 'HierarchyDefault' => [ 'Collections' => [ -- GitLab