diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2021-10-21 15:21:34 +0200 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2021-11-23 09:28:57 +0100 |
commit | bc3acfc957f888840cb904950a5932a330504185 (patch) | |
tree | 34fdee796ecf9f6ece7fdebb703681302845b6de /tests | |
parent | 66bdda568a16bbbc5ca75c9fc2fd8e5f4f0f200e (diff) | |
download | nextcloud-server-bc3acfc957f888840cb904950a5932a330504185.tar.gz nextcloud-server-bc3acfc957f888840cb904950a5932a330504185.zip |
Fix test class names
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/Authentication/Listeners/RemoteWipeActivityListenerTest.php | 2 | ||||
-rw-r--r-- | tests/lib/Authentication/Listeners/RemoteWipeNotificationsListenerTest.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/Authentication/Listeners/RemoteWipeActivityListenerTest.php b/tests/lib/Authentication/Listeners/RemoteWipeActivityListenerTest.php index 6409ff2dc35..a5038dd23b2 100644 --- a/tests/lib/Authentication/Listeners/RemoteWipeActivityListenerTest.php +++ b/tests/lib/Authentication/Listeners/RemoteWipeActivityListenerTest.php @@ -37,7 +37,7 @@ use PHPUnit\Framework\MockObject\MockObject; use Psr\Log\LoggerInterface; use Test\TestCase; -class RemoteWipeActivityListenerTests extends TestCase { +class RemoteWipeActivityListenerTest extends TestCase { /** @var IActivityManager|MockObject */ private $activityManager; diff --git a/tests/lib/Authentication/Listeners/RemoteWipeNotificationsListenerTest.php b/tests/lib/Authentication/Listeners/RemoteWipeNotificationsListenerTest.php index 1e03a344404..ef5545438c2 100644 --- a/tests/lib/Authentication/Listeners/RemoteWipeNotificationsListenerTest.php +++ b/tests/lib/Authentication/Listeners/RemoteWipeNotificationsListenerTest.php @@ -38,7 +38,7 @@ use OCP\Notification\INotification; use PHPUnit\Framework\MockObject\MockObject; use Test\TestCase; -class RemoteWipeNotificationListenerTests extends TestCase { +class RemoteWipeNotificationsListenerTest extends TestCase { /** @var INotificationManager|MockObject */ private $notificationManager; |