diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2017-03-09 21:50:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-09 21:50:05 +0100 |
commit | db5fc4d3cbff68055d338f91bef44572b6c44fa6 (patch) | |
tree | c259202107fd5edff527314cdd06d19c449e7d5d /apps/comments/tests/Unit/AppInfo/ApplicationTest.php | |
parent | c16cb1978b9ebd55fe7bf4e66e58062e89d2437a (diff) | |
parent | d4200a08cceeb99a41f45f50a41d50e0cb05cab3 (diff) | |
download | nextcloud-server-db5fc4d3cbff68055d338f91bef44572b6c44fa6.tar.gz nextcloud-server-db5fc4d3cbff68055d338f91bef44572b6c44fa6.zip |
Merge pull request #3693 from nextcloud/get-user-folder-of-correct-user
Get the user folder of the correct user for mention notifications
Diffstat (limited to 'apps/comments/tests/Unit/AppInfo/ApplicationTest.php')
-rw-r--r-- | apps/comments/tests/Unit/AppInfo/ApplicationTest.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/comments/tests/Unit/AppInfo/ApplicationTest.php b/apps/comments/tests/Unit/AppInfo/ApplicationTest.php index e0a47dbfff9..5adfbbcc635 100644 --- a/apps/comments/tests/Unit/AppInfo/ApplicationTest.php +++ b/apps/comments/tests/Unit/AppInfo/ApplicationTest.php @@ -22,6 +22,7 @@ namespace OCA\Comments\Tests\Unit\AppInfo; use OCA\Comments\AppInfo\Application; +use OCA\Comments\Notification\Notifier; use Test\TestCase; /** @@ -56,7 +57,8 @@ class ApplicationTest extends TestCase { 'OCA\Comments\Activity\Listener', 'OCA\Comments\Activity\Provider', 'OCA\Comments\Activity\Setting', - 'OCA\Comments\Notification\Listener' + 'OCA\Comments\Notification\Listener', + Notifier::class, ]; foreach($services as $service) { |