diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2017-05-16 10:30:41 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2017-05-18 22:10:57 +0200 |
commit | 258c8720ddd46eb7e686728b82c0618036c64af9 (patch) | |
tree | 7f31d78f3b40ff3d670ca6ac6e26d2d1ebd22feb | |
parent | 58683f11acf0a6e4d5dd1615012eeb1897e2ab2e (diff) | |
download | nextcloud-server-258c8720ddd46eb7e686728b82c0618036c64af9.tar.gz nextcloud-server-258c8720ddd46eb7e686728b82c0618036c64af9.zip |
Fix backup codes activity type
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
-rw-r--r-- | apps/twofactor_backupcodes/tests/Unit/Service/BackupCodeStorageTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/twofactor_backupcodes/tests/Unit/Service/BackupCodeStorageTest.php b/apps/twofactor_backupcodes/tests/Unit/Service/BackupCodeStorageTest.php index 109db7f688c..d2387bd6ccd 100644 --- a/apps/twofactor_backupcodes/tests/Unit/Service/BackupCodeStorageTest.php +++ b/apps/twofactor_backupcodes/tests/Unit/Service/BackupCodeStorageTest.php @@ -98,7 +98,7 @@ class BackupCodeStorageTest extends TestCase { ->will($this->returnSelf()); $event->expects($this->once()) ->method('setType') - ->with('twofactor') + ->with('security') ->will($this->returnSelf()); $event->expects($this->once()) ->method('setAuthor') |