aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_framework
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-06-30 00:33:33 +0200
committerTristan Darricau <github@nicofuma.fr>2014-06-30 00:33:33 +0200
commit0ce27eacb1e0ca797cb8722fc3e57fd3ae7bc85f (patch)
tree3217b840153f5578f4774b68efa964bec2283653 /tests/test_framework
parent5762af618049ca58b5c5c9dde8df2ebf619c49af (diff)
downloadforums-0ce27eacb1e0ca797cb8722fc3e57fd3ae7bc85f.tar
forums-0ce27eacb1e0ca797cb8722fc3e57fd3ae7bc85f.tar.gz
forums-0ce27eacb1e0ca797cb8722fc3e57fd3ae7bc85f.tar.bz2
forums-0ce27eacb1e0ca797cb8722fc3e57fd3ae7bc85f.tar.xz
forums-0ce27eacb1e0ca797cb8722fc3e57fd3ae7bc85f.zip
[ticket/11480] Fix the double spaces in phpbb_functional_test_case
PHPBB3-11480
Diffstat (limited to 'tests/test_framework')
-rw-r--r--tests/test_framework/phpbb_functional_test_case.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_framework/phpbb_functional_test_case.php b/tests/test_framework/phpbb_functional_test_case.php
index c71cd4d0a9..4522674649 100644
--- a/tests/test_framework/phpbb_functional_test_case.php
+++ b/tests/test_framework/phpbb_functional_test_case.php
@@ -747,7 +747,7 @@ class phpbb_functional_test_case extends phpbb_test_case
// I use a request because the form submission method does not allow you to send data that is not
// contained in one of the actual form fields that the browser sees (i.e. it ignores "hidden" inputs)
// Instead, I send it as a request with the submit button "post" set to true.
- return self::request('POST', $posting_url, $form_data);
+ return self::request('POST', $posting_url, $form_data);
}
/**