aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--apps/twofactor_backupcodes/tests/Unit/Controller/SettingsControllerTest.php14
1 files changed, 0 insertions, 14 deletions
diff --git a/apps/twofactor_backupcodes/tests/Unit/Controller/SettingsControllerTest.php b/apps/twofactor_backupcodes/tests/Unit/Controller/SettingsControllerTest.php
index 8427c10e839..4c4fde1e0b0 100644
--- a/apps/twofactor_backupcodes/tests/Unit/Controller/SettingsControllerTest.php
+++ b/apps/twofactor_backupcodes/tests/Unit/Controller/SettingsControllerTest.php
@@ -56,20 +56,6 @@ class SettingsControllerTest extends TestCase {
$this->controller = new SettingsController('twofactor_backupcodes', $this->request, $this->storage, $this->userSession);
}
- public function testState() {
- $user = $this->getMockBuilder(IUser::class)->getMock();
-
- $this->userSession->expects($this->once())
- ->method('getUser')
- ->will($this->returnValue($user));
- $this->storage->expects($this->once())
- ->method('getBackupCodesState')
- ->with($user)
- ->will($this->returnValue('state'));
-
- $this->assertEquals('state', $this->controller->state());
- }
-
public function testCreateCodes() {
$user = $this->getMockBuilder(IUser::class)->getMock();