diff options
author | Brett Profitt <brett.profitt@gmail.com> | 2012-01-25 21:46:20 -0800 |
---|---|---|
committer | Brett Profitt <brett.profitt@gmail.com> | 2012-01-25 21:46:20 -0800 |
commit | 4202d7d3087db4f503a7586a1f3fc824ebf45b30 (patch) | |
tree | 5c120eb9080425569f322668e1896becd9fb5e5c /engine/tests/api/helpers.php | |
parent | 6a2d3d7c2d22f57f28472d9d023788d20d41f005 (diff) | |
download | elgg-4202d7d3087db4f503a7586a1f3fc824ebf45b30.tar.gz elgg-4202d7d3087db4f503a7586a1f3fc824ebf45b30.tar.bz2 |
Fixes #4081. Using ElggBatch to delete recursive.
Diffstat (limited to 'engine/tests/api/helpers.php')
-rw-r--r-- | engine/tests/api/helpers.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/engine/tests/api/helpers.php b/engine/tests/api/helpers.php index a615be0c0..62e4471e0 100644 --- a/engine/tests/api/helpers.php +++ b/engine/tests/api/helpers.php @@ -526,7 +526,7 @@ class ElggCoreHelpersTest extends ElggCoreUnitTest { 'offset' => 0, 'limit' => 11 ); - $batch = new ElggBatch(array('ElggCoreHelpersTest', 'test_elgg_batch_callback'), $options, + $batch = new ElggBatch(array('ElggCoreHelpersTest', 'elgg_batch_callback_test'), $options, null, 5); $j = 0; foreach ($batch as $e) { @@ -539,12 +539,12 @@ class ElggCoreHelpersTest extends ElggCoreUnitTest { $this->assertEqual(11, $j); // no increment, 0 start - ElggCoreHelpersTest::test_elgg_batch_callback(array(), true); + ElggCoreHelpersTest::elgg_batch_callback_test(array(), true); $options = array( 'offset' => 0, 'limit' => 11 ); - $batch = new ElggBatch(array('ElggCoreHelpersTest', 'test_elgg_batch_callback'), $options, + $batch = new ElggBatch(array('ElggCoreHelpersTest', 'elgg_batch_callback_test'), $options, null, 5); $batch->setIncrementOffset(false); @@ -558,12 +558,12 @@ class ElggCoreHelpersTest extends ElggCoreUnitTest { $this->assertEqual(11, $j); // no increment, 3 start - ElggCoreHelpersTest::test_elgg_batch_callback(array(), true); + ElggCoreHelpersTest::elgg_batch_callback_test(array(), true); $options = array( 'offset' => 3, 'limit' => 11 ); - $batch = new ElggBatch(array('ElggCoreHelpersTest', 'test_elgg_batch_callback'), $options, + $batch = new ElggBatch(array('ElggCoreHelpersTest', 'elgg_batch_callback_test'), $options, null, 5); $batch->setIncrementOffset(false); @@ -578,7 +578,7 @@ class ElggCoreHelpersTest extends ElggCoreUnitTest { $this->assertEqual(11, $j); } - static function test_elgg_batch_callback($options, $reset = false) { + static function elgg_batch_callback_test($options, $reset = false) { static $count = 1; if ($reset) { |