summaryrefslogtreecommitdiff
path: root/tests/units/Job/SubtaskEventJobTest.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-07-19 22:38:30 -0400
committerFrederic Guillot <fred@kanboard.net>2016-07-19 22:38:30 -0400
commit390082aa41cb81610089163b1cc3a256f3b3c513 (patch)
tree1ada3964702ee536fe1486f34230f8e30a95d82e /tests/units/Job/SubtaskEventJobTest.php
parentd9d37882228771bca0c7f53f5ffcef90ba7ac1c5 (diff)
Refactoring of internal task events
Diffstat (limited to 'tests/units/Job/SubtaskEventJobTest.php')
-rw-r--r--tests/units/Job/SubtaskEventJobTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/units/Job/SubtaskEventJobTest.php b/tests/units/Job/SubtaskEventJobTest.php
index 265a8e2d..66c3db05 100644
--- a/tests/units/Job/SubtaskEventJobTest.php
+++ b/tests/units/Job/SubtaskEventJobTest.php
@@ -21,8 +21,8 @@ class SubtaskEventJobTest extends Base
{
$this->container['dispatcher']->addListener(SubtaskModel::EVENT_CREATE, function() {});
- $SubtaskEventJob = new SubtaskEventJob($this->container);
- $SubtaskEventJob->execute(42, SubtaskModel::EVENT_CREATE);
+ $subtaskEventJob = new SubtaskEventJob($this->container);
+ $subtaskEventJob->execute(42, SubtaskModel::EVENT_CREATE);
$called = $this->container['dispatcher']->getCalledListeners();
$this->assertEmpty($called);