diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-12-04 18:43:53 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-12-04 18:43:53 -0500 |
commit | 6d2bd7383a8204a85429a88eb7ebe2a36a035455 (patch) | |
tree | ea398803446138859a700892e68a43cdc1bd3f59 /tests | |
parent | 3384ba49fa06c06794665407f22553b3ae0de498 (diff) |
Make sure user mention events are serialized before to push in queue
Diffstat (limited to 'tests')
-rw-r--r-- | tests/units/Job/UserMentionJobTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/units/Job/UserMentionJobTest.php b/tests/units/Job/UserMentionJobTest.php index 31d0ddbb..4cd4ac9b 100644 --- a/tests/units/Job/UserMentionJobTest.php +++ b/tests/units/Job/UserMentionJobTest.php @@ -90,7 +90,7 @@ class UserMentionJobTest extends Base $this->container['dispatcher']->addListener(TaskModel::EVENT_USER_MENTION, array($this, 'onUserMention')); - $userMentionJob->execute('test @user1 @user2', TaskModel::EVENT_USER_MENTION, $event); + $userMentionJob->execute('test @user1 @user2', TaskModel::EVENT_USER_MENTION, $event->getAll()); $called = $this->container['dispatcher']->getCalledListeners(); $this->assertArrayHasKey(TaskModel::EVENT_USER_MENTION.'.UserMentionJobTest::onUserMention', $called); |