From 545a8eef05e2d406bccc0c362bc0cf30a3af00b9 Mon Sep 17 00:00:00 2001 From: Samuel NELA Date: Thu, 4 Oct 2018 20:06:57 +0200 Subject: [PATCH] [EventDispatcher] Remove template method in test case --- .../Component/EventDispatcher/Tests/GenericEventTest.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Symfony/Component/EventDispatcher/Tests/GenericEventTest.php b/src/Symfony/Component/EventDispatcher/Tests/GenericEventTest.php index 9cf68c987f..b63f69df14 100644 --- a/src/Symfony/Component/EventDispatcher/Tests/GenericEventTest.php +++ b/src/Symfony/Component/EventDispatcher/Tests/GenericEventTest.php @@ -31,8 +31,6 @@ class GenericEventTest extends TestCase */ protected function setUp() { - parent::setUp(); - $this->subject = new \stdClass(); $this->event = new GenericEvent($this->subject, array('name' => 'Event')); } @@ -44,8 +42,6 @@ class GenericEventTest extends TestCase { $this->subject = null; $this->event = null; - - parent::tearDown(); } public function testConstruct()