summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2012-08-18 14:25:14 +0200
committerwebchick <webchick@24967.no-reply.drupal.org>2012-08-18 14:25:14 +0200
commit53d0ae0acf1a87e7e402bd9e362062eb962da0e5 (patch)
treec8c0a241e98565c824ddf62599ffbc4882d29665
parentdd1daf8114d1ef33df37b0893774f8793ce777c5 (diff)
downloadbrdo-53d0ae0acf1a87e7e402bd9e362062eb962da0e5.tar.gz
brdo-53d0ae0acf1a87e7e402bd9e362062eb962da0e5.tar.bz2
Issue #1670312 by dsdeiz, oriol_e9g, tstoeckler: Fixed TestBase::generatePermutations() should call itself by the proper name in PHPDoc.
-rw-r--r--modules/simpletest/drupal_web_test_case.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/simpletest/drupal_web_test_case.php b/modules/simpletest/drupal_web_test_case.php
index 19a6c94e4..b7a5f1aef 100644
--- a/modules/simpletest/drupal_web_test_case.php
+++ b/modules/simpletest/drupal_web_test_case.php
@@ -632,7 +632,7 @@ abstract class DrupalTestCase {
* 'one' => array(0, 1),
* 'two' => array(2, 3),
* );
- * $permutations = $this->permute($parameters);
+ * $permutations = DrupalTestCase::generatePermutations($parameters)
* // Result:
* $permutations == array(
* array('one' => 0, 'two' => 2),