aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2020-01-30 21:38:35 +0100
committerMarc Alexander <admin@m-a-styles.de>2020-01-30 21:38:35 +0100
commitc221858fabe1f99e55d4938f5b0aa35f53457a70 (patch)
treea20fa8aca1101a8de6fad5d7f0845dd0d1050177 /tests/passwords/drivers_test.php
parentMerge branch '3.3.x' (diff)
parentMerge pull request #5843 from JoshyPHP/ticket/16342 (diff)
downloadphpbb-c221858fabe1f99e55d4938f5b0aa35f53457a70.tar.gz
phpbb-c221858fabe1f99e55d4938f5b0aa35f53457a70.tar.bz2
phpbb-c221858fabe1f99e55d4938f5b0aa35f53457a70.zip
Merge branch '3.3.x'
Diffstat (limited to 'tests/passwords/drivers_test.php')
-rw-r--r--tests/passwords/drivers_test.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/passwords/drivers_test.php b/tests/passwords/drivers_test.php
index fc11ca0bc7..37b333e23a 100644
--- a/tests/passwords/drivers_test.php
+++ b/tests/passwords/drivers_test.php
@@ -24,8 +24,8 @@ class phpbb_passwords_helper_test extends \phpbb_test_case
// Initialize argon2 default options
$this->argon2_default_cost_options = [
- 'memory_cost' => 1024,
- 'time_cost' => 2,
+ 'memory_cost' => 65536,
+ 'time_cost' => 4,
'threads' => 2
];