Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9ec6a9c

Browse files
committed
minor symfony#9640 Fixed wrong property in test teardown (fabpot)
This PR was submitted for the master branch but it was merged into the 2.2 branch instead (closes symfony#9640). Discussion ---------- Fixed wrong property in test teardown This PR was submitted on the symfony/EventDispatcher read-only repository and moved automatically to the main Symfony repository (closes symfony/event-dispatcher#2). Commits ------- 5330603 Teardown used wrong property
2 parents c3b4b68 + e1d0d5c commit 9ec6a9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/EventDispatcher/Tests/EventTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ protected function setUp()
4646
protected function tearDown()
4747
{
4848
$this->event = null;
49-
$this->eventDispatcher = null;
49+
$this->dispatcher = null;
5050
}
5151

5252
public function testIsPropagationStopped()

0 commit comments

Comments
 (0)