diff options
author | rxu <rxu@mail.ru> | 2019-12-29 02:12:36 +0700 |
---|---|---|
committer | rxu <rxu@mail.ru> | 2019-12-29 12:59:24 +0700 |
commit | dcab0762210a4059cca7458344dcc1aeb0360c42 (patch) | |
tree | fbae8ee0429f1c6ebb29cd8af8c5f3d1d7450ea4 /tests/passwords | |
parent | [ticket/16276] Fix bbcode_firstpass undefined mode property (diff) | |
download | phpbb-dcab0762210a4059cca7458344dcc1aeb0360c42.tar.gz phpbb-dcab0762210a4059cca7458344dcc1aeb0360c42.tar.bz2 phpbb-dcab0762210a4059cca7458344dcc1aeb0360c42.zip |
[ticket/16276] Further fix PHP nightly tests
PHPBB3-16276
Diffstat (limited to 'tests/passwords')
-rw-r--r-- | tests/passwords/drivers_test.php | 4 |
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'), ); } |