diff options
author | Andreas Fischer <bantu@phpbb.com> | 2013-03-22 22:42:05 +0100 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2013-03-22 22:42:05 +0100 |
commit | 02817158fc4209b57893eaba107f732274835fa7 (patch) | |
tree | 9299b746093d3e669f7f14cae93c5e5de99ac80c /tests/test_framework | |
parent | 69df6b49db73d1a475d0b410f38fb4efb56d7451 (diff) | |
download | forums-02817158fc4209b57893eaba107f732274835fa7.tar forums-02817158fc4209b57893eaba107f732274835fa7.tar.gz forums-02817158fc4209b57893eaba107f732274835fa7.tar.bz2 forums-02817158fc4209b57893eaba107f732274835fa7.tar.xz forums-02817158fc4209b57893eaba107f732274835fa7.zip |
[ticket/11460] Configure functional test board email using dummy SMTP data.
PHPBB3-11460
Diffstat (limited to 'tests/test_framework')
-rw-r--r-- | tests/test_framework/phpbb_functional_test_case.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/test_framework/phpbb_functional_test_case.php b/tests/test_framework/phpbb_functional_test_case.php index a62f5341ca..a411d9c98a 100644 --- a/tests/test_framework/phpbb_functional_test_case.php +++ b/tests/test_framework/phpbb_functional_test_case.php @@ -196,12 +196,12 @@ class phpbb_functional_test_case extends phpbb_test_case $parseURL = parse_url(self::$config['phpbb_functional_url']); $data = array_merge($data, array( - 'email_enable' => false, - 'smtp_delivery' => false, - 'smtp_host' => '', - 'smtp_auth' => '', - 'smtp_user' => '', - 'smtp_pass' => '', + 'email_enable' => true, + 'smtp_delivery' => true, + 'smtp_host' => 'nxdomain.phpbb.com', + 'smtp_auth' => '', + 'smtp_user' => 'nxuser', + 'smtp_pass' => 'nxpass', 'cookie_secure' => false, 'force_server_vars' => false, 'server_protocol' => $parseURL['scheme'] . '://', |