aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2019-12-29 15:11:23 +0100
committerMarc Alexander <admin@m-a-styles.de>2019-12-29 15:11:23 +0100
commit71a1c9fee7aaf3f92e934302abd121d75d4c5df2 (patch)
treee17dcc9b8477c68182e166f52db970f49f7c201a /tests/passwords
parentMerge pull request #5794 from 3D-I/ticket/16273 (diff)
parent[ticket/16276] Further fix PHP nightly tests (diff)
downloadphpbb-71a1c9fee7aaf3f92e934302abd121d75d4c5df2.tar.gz
phpbb-71a1c9fee7aaf3f92e934302abd121d75d4c5df2.tar.bz2
phpbb-71a1c9fee7aaf3f92e934302abd121d75d4c5df2.zip
Merge pull request #5796 from rxu/ticket/16276
[ticket/16276] Fix bbcode_firstpass undefined mode property
Diffstat (limited to 'tests/passwords')
-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 8300431dfe..8c1fdf49c2 100644
--- a/tests/passwords/drivers_test.php
+++ b/tests/passwords/drivers_test.php
@@ -44,8 +44,8 @@ class phpbb_passwords_helper_test extends \phpbb_test_case
public function data_helper_encode64()
{
return array(
- array('foobar', 6, 'axqPW3aQ'),
- array('foobar', 7, 'axqPW3aQ..'),
+ array('foobars', 6, 'axqPW3aQ'),
+ array('foobarss', 7, 'axqPW3aQn/'),
array('foobar', 5, 'axqPW34'),
);
}