diff options
author | Christopher Ng <chrng8@gmail.com> | 2022-03-09 18:58:23 +0000 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2022-03-09 19:46:37 +0000 |
commit | e97701c6b0509de26dbad86d0d3569be331cb94b (patch) | |
tree | 8ad93710b20decd2a93a425f2897e5679f3c2bc1 /apps/dav/tests/integration | |
parent | 0cbb6d7ba9b5d3b2c79f2cf0bafe6145da0857f6 (diff) | |
download | nextcloud-server-e97701c6b0509de26dbad86d0d3569be331cb94b.tar.gz nextcloud-server-e97701c6b0509de26dbad86d0d3569be331cb94b.zip |
Improve error handling and output messages
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'apps/dav/tests/integration')
-rw-r--r-- | apps/dav/tests/integration/UserMigration/CalendarMigratorTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/tests/integration/UserMigration/CalendarMigratorTest.php b/apps/dav/tests/integration/UserMigration/CalendarMigratorTest.php index d1bac3642dd..f1ad6dda22e 100644 --- a/apps/dav/tests/integration/UserMigration/CalendarMigratorTest.php +++ b/apps/dav/tests/integration/UserMigration/CalendarMigratorTest.php @@ -117,7 +117,7 @@ class CalendarMigratorTest extends TestCase { $this->invokePrivate($this->migrator, 'importCalendar', [$user, $filename, $initialCalendarUri, $importCalendar, $this->output]); - $calendarExports = $this->invokePrivate($this->migrator, 'getCalendarExports', [$user]); + $calendarExports = $this->invokePrivate($this->migrator, 'getCalendarExports', [$user, $this->output]); $this->assertCount(1, $calendarExports); /** @var VCalendar $exportCalendar */ |