From bed730c938bb41f82699e21a9bde6ba0a1ceab4a Mon Sep 17 00:00:00 2001 From: Kentaro Ohkouchi Date: Tue, 9 Jan 2018 18:43:59 +0900 Subject: [PATCH] Fix parent::setUp() --- tests/Eccube/Tests/Service/PluginServiceWithExceptionTest.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/Eccube/Tests/Service/PluginServiceWithExceptionTest.php b/tests/Eccube/Tests/Service/PluginServiceWithExceptionTest.php index 1d3a7bc6333..8cd579df40f 100644 --- a/tests/Eccube/Tests/Service/PluginServiceWithExceptionTest.php +++ b/tests/Eccube/Tests/Service/PluginServiceWithExceptionTest.php @@ -26,7 +26,9 @@ private function createTempDir(){ public function setUp() { - parent::setUp(); + $this->client = self::createClient(); + $this->container = $this->client->getContainer(); + $this->entityManager = $this->container->get('doctrine')->getManager(); } public function tearDown()