summaryrefslogtreecommitdiff
path: root/tests/units/Job/SubtaskEventJobTest.php
diff options
context:
space:
mode:
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);