From bc3acfc957f888840cb904950a5932a330504185 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= Date: Thu, 21 Oct 2021 15:21:34 +0200 Subject: [PATCH] Fix test class names MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Côme Chilliet --- .../Authentication/Listeners/RemoteWipeActivityListenerTest.php | 2 +- .../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;