From c142fe84f534b57220c2caebd10c223348f329e3 Mon Sep 17 00:00:00 2001
From: Sergio Jovani <lesergi@gmail.com>
Date: Mon, 19 Dec 2011 17:19:12 +0100
Subject: [PATCH] Call parent::setUp() from call_user_func_array() in order to
 pass module list as array

---
 pathauto.test |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/pathauto.test b/pathauto.test
index b47b413..1ccf499 100644
--- a/pathauto.test
+++ b/pathauto.test
@@ -16,7 +16,7 @@ class PathautoTestHelper extends DrupalWebTestCase {
     $modules[] = 'token';
     $modules[] = 'pathauto';
     $modules[] = 'taxonomy';
-    parent::setUp($modules);
+    call_user_func_array(array($this, 'parent::setUp'), $modules);
   }
 
   function assertToken($type, $object, $token, $expected) {
-- 
1.7.5.4

