summaryrefslogtreecommitdiffstatshomepage
path: root/modules/simpletest/tests/xmlrpc.test
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-05-04 10:38:47 +0000
committerDries Buytaert <dries@buytaert.net>2009-05-04 10:38:47 +0000
commit1883e93f149c5da0cafaaad80079eefa47d024cb (patch)
tree39f4b6c0fe4b292832f5300e90d97d7c263c2917 /modules/simpletest/tests/xmlrpc.test
parent17df77c3a40200ef456f6ab8c5a3528dd0278741 (diff)
downloaddrupal-1883e93f149c5da0cafaaad80079eefa47d024cb.tar.gz
drupal-1883e93f149c5da0cafaaad80079eefa47d024cb.zip
- Patch #352872 by Damien Tournoud: clean-up xmlrpc() wrapper.
Diffstat (limited to 'modules/simpletest/tests/xmlrpc.test')
-rw-r--r--modules/simpletest/tests/xmlrpc.test6
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/simpletest/tests/xmlrpc.test b/modules/simpletest/tests/xmlrpc.test
index ce6a053d242..fb94911ade5 100644
--- a/modules/simpletest/tests/xmlrpc.test
+++ b/modules/simpletest/tests/xmlrpc.test
@@ -12,6 +12,9 @@ class XMLRPCValidator1IncTestCase extends DrupalWebTestCase {
function setUp() {
parent::setUp('xmlrpc_test');
+
+ // Force loading the xmlrpc.inc to have the xmlrpc() function.
+ drupal_function_exists('xmlrpc');
}
/**
@@ -132,6 +135,9 @@ class XMLRPCMessagesTestCase extends DrupalWebTestCase {
function setUp() {
parent::setUp('xmlrpc_test');
+
+ // Force loading the xmlrpc.inc to have the xmlrpc() function.
+ drupal_function_exists('xmlrpc');
}
/**