From 0c34fbc84fcfda09bbb559382ba58a9182fb1b6f Mon Sep 17 00:00:00 2001 From: Robert Lange Date: Fri, 19 Apr 2024 20:15:17 +0200 Subject: [PATCH] refs #2999 fix styles --- .../VuFindTest/View/Helper/Root/RecordTest.php | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/module/VuFind/tests/unit-tests/src/VuFindTest/View/Helper/Root/RecordTest.php b/module/VuFind/tests/unit-tests/src/VuFindTest/View/Helper/Root/RecordTest.php index 8421bc23890..027f31e315e 100644 --- a/module/VuFind/tests/unit-tests/src/VuFindTest/View/Helper/Root/RecordTest.php +++ b/module/VuFind/tests/unit-tests/src/VuFindTest/View/Helper/Root/RecordTest.php @@ -379,11 +379,23 @@ public function testGetCheckbox() $expectedCalls = [ [ $tpl, - ['number' => 1, 'id' => 'Solr|000105196', 'checkboxElementId' => 'bar-Solr|000105196', 'prefix' => 'bar', 'formAttr' => 'foo'] + [ + 'number' => 1, + 'id' => 'Solr|000105196', + 'checkboxElementId' => 'bar-Solr|000105196', + 'prefix' => 'bar', + 'formAttr' => 'foo' + ] ], [ $tpl, - ['number' => 2, 'id' => 'Solr|000105196', 'checkboxElementId' => 'bar-Solr|000105196', 'prefix' => 'bar', 'formAttr' => 'foo'] + [ + 'number' => 2, + 'id' => 'Solr|000105196', + 'checkboxElementId' => 'bar-Solr|000105196', + 'prefix' => 'bar', + 'formAttr' => 'foo' + ] ] ];