Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/twofactor_totp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2017-01-17 16:45:42 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2017-01-17 16:45:42 +0300
commit48888dfc9a09bab59cf13368f652c17d4b63d1d6 (patch)
tree65a0e9b324ba3ed58c92df8cfe0e1689022eda9c /tests
parent3bbd4948b3d268c5b0ae35ae81d271ff432d5288 (diff)
use vendor neutral name instead of 'Google authenticator'
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/Activity/SettingTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/Activity/SettingTest.php b/tests/unit/Activity/SettingTest.php
index b92bb64..6fbaba4 100644
--- a/tests/unit/Activity/SettingTest.php
+++ b/tests/unit/Activity/SettingTest.php
@@ -47,7 +47,7 @@ class SettingTest extends TestCase {
$this->assertEquals('twofactor_totp', $this->setting->getIdentifier());
$this->l10n->expects($this->once())
->method('t')
- ->with('TOTP (Google Authenticator)')
+ ->with('TOTP (Authenticator app)')
->will($this->returnValue('TOTP (Google Authentifizierer)'));
$this->assertEquals('TOTP (Google Authentifizierer)', $this->setting->getName());
$this->assertEquals(10, $this->setting->getPriority());