diff options
author | nickw <nickw@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-10-09 17:11:25 +0000 |
---|---|---|
committer | nickw <nickw@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-10-09 17:11:25 +0000 |
commit | b62012bf3da994298ad52a4ccec06e814bcc5a79 (patch) | |
tree | e8117952cca46ef10c6543d388e92bd6e232fb34 /engine/lib/entities.php | |
parent | 4bad66f81ae1c6798af56121ffba1045a36ee034 (diff) | |
download | elgg-b62012bf3da994298ad52a4ccec06e814bcc5a79.tar.gz elgg-b62012bf3da994298ad52a4ccec06e814bcc5a79.tar.bz2 |
Creating an ElggObject unit test.
Fixing issues with the unit test plugin hooks, as well as infinite looping bugs introduced by the unit test skeleton.
git-svn-id: http://code.elgg.org/elgg/trunk@3519 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/entities.php')
-rw-r--r-- | engine/lib/entities.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/lib/entities.php b/engine/lib/entities.php index 779efb7af..b72eb6ff0 100644 --- a/engine/lib/entities.php +++ b/engine/lib/entities.php @@ -2787,8 +2787,8 @@ */ function entities_test($hook, $type, $value, $params) { global $CONFIG; - $params[] = $CONFIG->path . 'engine/tests/objects/entities.php'; - return $params; + $value[] = $CONFIG->path . 'engine/tests/objects/entities.php'; + return $value; } /** |