diff options
author | Joas Schilling <coding@schilljs.com> | 2017-04-20 13:54:20 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2017-04-20 13:54:20 +0200 |
commit | 73b6cd1061480078ec252c1e5e1d97ac48ea892a (patch) | |
tree | 9ab2992d8378cce80e2748e50b02dd5e104329b5 /apps/dav/tests/unit/CalDAV/CalendarTest.php | |
parent | ec2f2b75bedc222c3063d958deb0c35c043c5f1f (diff) | |
download | nextcloud-server-73b6cd1061480078ec252c1e5e1d97ac48ea892a.tar.gz nextcloud-server-73b6cd1061480078ec252c1e5e1d97ac48ea892a.zip |
Fix invalid Dav test
PHP Warning: Declaration of PublicCalendarTest::testPrivateClassification()
should be compatible with CalendarTest::testPrivateClassification($expectedChildren, $isShared)
in apps/dav/tests/unit/CalDAV/PublicCalendarTest.php on line 29
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/dav/tests/unit/CalDAV/CalendarTest.php')
-rw-r--r-- | apps/dav/tests/unit/CalDAV/CalendarTest.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/dav/tests/unit/CalDAV/CalendarTest.php b/apps/dav/tests/unit/CalDAV/CalendarTest.php index b80d510356e..4ede886d31e 100644 --- a/apps/dav/tests/unit/CalDAV/CalendarTest.php +++ b/apps/dav/tests/unit/CalDAV/CalendarTest.php @@ -225,8 +225,8 @@ class CalendarTest extends TestCase { /** * @dataProvider providesConfidentialClassificationData - * @param $expectedChildren - * @param $isShared + * @param int $expectedChildren + * @param bool $isShared */ public function testPrivateClassification($expectedChildren, $isShared) { @@ -268,8 +268,8 @@ class CalendarTest extends TestCase { /** * @dataProvider providesConfidentialClassificationData - * @param $expectedChildren - * @param $isShared + * @param int $expectedChildren + * @param bool $isShared */ public function testConfidentialClassification($expectedChildren, $isShared) { $start = '20160609'; |