diff options
Diffstat (limited to 'apps/dav/tests/unit/BackgroundJob/CleanupInvitationTokenJobTest.php')
-rw-r--r-- | apps/dav/tests/unit/BackgroundJob/CleanupInvitationTokenJobTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/dav/tests/unit/BackgroundJob/CleanupInvitationTokenJobTest.php b/apps/dav/tests/unit/BackgroundJob/CleanupInvitationTokenJobTest.php index 3e69230f441..2d80b5bf0ea 100644 --- a/apps/dav/tests/unit/BackgroundJob/CleanupInvitationTokenJobTest.php +++ b/apps/dav/tests/unit/BackgroundJob/CleanupInvitationTokenJobTest.php @@ -84,7 +84,7 @@ class CleanupInvitationTokenJobTest extends TestCase { $queryBuilder->expects($this->at(0)) ->method('delete') - ->with('calendar_invitation_tokens') + ->with('calendar_invitations') ->will($this->returnValue($queryBuilder)); $queryBuilder->expects($this->at(3)) ->method('where') @@ -97,4 +97,4 @@ class CleanupInvitationTokenJobTest extends TestCase { $this->backgroundJob->run([]); } -}
\ No newline at end of file +} |