diff options
author | Joas Schilling <coding@schilljs.com> | 2016-07-01 16:05:16 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2016-07-01 16:05:16 +0200 |
commit | 777dbec369937aa4ac87720bfeeb413a2a8801db (patch) | |
tree | 9b0478071d6aaff7d6c020379a0c1a8cf81f04f7 /tests | |
parent | ea9c79b7c0d22cead5b470a09653cd9ae6ff022e (diff) | |
download | nextcloud-server-777dbec369937aa4ac87720bfeeb413a2a8801db.tar.gz nextcloud-server-777dbec369937aa4ac87720bfeeb413a2a8801db.zip |
Fix Notification tests with phpunit 5.2+
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/notification/notificationtest.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/lib/notification/notificationtest.php b/tests/lib/notification/notificationtest.php index ee9454c77a0..bb9440a34d9 100644 --- a/tests/lib/notification/notificationtest.php +++ b/tests/lib/notification/notificationtest.php @@ -517,6 +517,7 @@ class NotificationTest extends TestCase { ->setMethods([ 'isValidCommon', 'getSubject', + 'getParsedSubject', ]) ->getMock(); @@ -547,6 +548,7 @@ class NotificationTest extends TestCase { $notification = $this->getMockBuilder('\OC\Notification\Notification') ->setMethods([ 'isValidCommon', + 'getSubject', 'getParsedSubject', ]) ->getMock(); |