From 6453927d54125ea884bfd24342cdf917a83b2477 Mon Sep 17 00:00:00 2001 From: pbarroca <pbarroca@afi-sa.fr> Date: Thu, 9 Jul 2015 10:21:41 +0200 Subject: [PATCH] rel #27067 : forgotten parent::setUp() --- .../library/Class/WebService/SIGB/KohaRestfulTest.php | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/tests/library/Class/WebService/SIGB/KohaRestfulTest.php b/tests/library/Class/WebService/SIGB/KohaRestfulTest.php index 6179ca874d0..d8daeab063a 100644 --- a/tests/library/Class/WebService/SIGB/KohaRestfulTest.php +++ b/tests/library/Class/WebService/SIGB/KohaRestfulTest.php @@ -22,11 +22,15 @@ abstract class KohaRestfulTestCase extends ModelTestCase { const BASE_URL = 'http://cat-aficg55.biblibre.com/cgi-bin/koha/'; - protected $_storm_default_to_volatile = true; - protected $mock_web_client; - protected $service; + + protected + $_storm_default_to_volatile = true, + $mock_web_client, + $service; public function setUp() { + parent::setUp(); + $this->fixture('Class_AdminVar', ['id' => 'KOHA_MULTI_SITES', 'valeur' => '']); $this->mock_web_client = $this->mock(); -- GitLab