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>2016-08-22 14:32:16 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2016-08-22 14:32:16 +0300
commitbcef1062fca8a313fc65a22668c2d9829e792416 (patch)
treecaa16bb83a2bed2faf383cfa6080d359e81256de /tests
parent9fa4b44b4e40632294dfe72ed6e9cf3a9f83250a (diff)
remove debug variable
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/Controller/SettingsControllerTest.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/unit/Controller/SettingsControllerTest.php b/tests/unit/Controller/SettingsControllerTest.php
index ce668be..1536408 100644
--- a/tests/unit/Controller/SettingsControllerTest.php
+++ b/tests/unit/Controller/SettingsControllerTest.php
@@ -85,8 +85,7 @@ class SettingsControllerTest extends TestCase {
$qrCode = new QrCode();
$issuer = rawurlencode('https://instance.com (' . $this->defaults->getName() . ')');
- $x = "otpauth://totp/user%40instance.com?secret=newsecret&issuer=$issuer";
- $qr = $qrCode->setText($x)
+ $qr = $qrCode->setText("otpauth://totp/user%40instance.com?secret=newsecret&issuer=$issuer")
->setSize(150)
->getDataUri();