summaryrefslogtreecommitdiff
path: root/tests/units/EventBuilder/TaskLinkEventBuilderTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/units/EventBuilder/TaskLinkEventBuilderTest.php')
-rw-r--r--tests/units/EventBuilder/TaskLinkEventBuilderTest.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/units/EventBuilder/TaskLinkEventBuilderTest.php b/tests/units/EventBuilder/TaskLinkEventBuilderTest.php
index 18508146..4e38eeb6 100644
--- a/tests/units/EventBuilder/TaskLinkEventBuilderTest.php
+++ b/tests/units/EventBuilder/TaskLinkEventBuilderTest.php
@@ -33,6 +33,8 @@ class TaskLinkEventBuilderTest extends Base
$this->assertInstanceOf('Kanboard\Event\TaskLinkEvent', $event);
$this->assertNotEmpty($event['task_link']);
$this->assertNotEmpty($event['task']);
+ $this->assertEquals(1, $event->getTaskId());
+ $this->assertEquals(1, $event->getProjectId());
}
public function testBuildTitle()