diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-10-05 15:12:57 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2020-10-05 20:25:24 +0200 |
commit | d9015a8c94bfd71fe484618a06d276701d3bf9ff (patch) | |
tree | 3f7a1cd6ec2fd982dd02de71b76076f7f01cef70 /tests/lib/Security | |
parent | d357f4b10fe1b59e1e07bb90641d647522c7bfe2 (diff) | |
download | nextcloud-server-d9015a8c94bfd71fe484618a06d276701d3bf9ff.tar.gz nextcloud-server-d9015a8c94bfd71fe484618a06d276701d3bf9ff.zip |
Format code to a single space around binary operators
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'tests/lib/Security')
-rw-r--r-- | tests/lib/Security/HasherTest.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/lib/Security/HasherTest.php b/tests/lib/Security/HasherTest.php index e1faef2f69b..3bd98625529 100644 --- a/tests/lib/Security/HasherTest.php +++ b/tests/lib/Security/HasherTest.php @@ -185,12 +185,12 @@ class HasherTest extends \Test\TestCase { $message = 'mysecret'; $blowfish = 1 . '|' . password_hash($message, PASSWORD_BCRYPT, []); - $argon2 = 2 . '|' . password_hash($message, PASSWORD_ARGON2I, []); + $argon2 = 2 . '|' . password_hash($message, PASSWORD_ARGON2I, []); $newAlg = PASSWORD_ARGON2I; if (\defined('PASSWORD_ARGON2ID')) { $newAlg = PASSWORD_ARGON2ID; - $argon2 = 2 . '|' . password_hash($message, PASSWORD_ARGON2ID, []); + $argon2 = 2 . '|' . password_hash($message, PASSWORD_ARGON2ID, []); } @@ -213,7 +213,7 @@ class HasherTest extends \Test\TestCase { $message = 'mysecret'; - $argon2i = 2 . '|' . password_hash($message, PASSWORD_ARGON2I, []); + $argon2i = 2 . '|' . password_hash($message, PASSWORD_ARGON2I, []); $newHash = null; $this->assertTrue($this->hasher->verify($message, $argon2i, $newHash)); @@ -237,7 +237,7 @@ class HasherTest extends \Test\TestCase { $message = 'mysecret'; - $argon2id = 3 . '|' . password_hash($message, PASSWORD_ARGON2ID, []); + $argon2id = 3 . '|' . password_hash($message, PASSWORD_ARGON2ID, []); $newHash = null; $this->assertTrue($this->hasher->verify($message, $argon2id, $newHash)); |