diff options
Diffstat (limited to 'engine/tests/objects')
-rw-r--r-- | engine/tests/objects/entities.php | 1 | ||||
-rw-r--r-- | engine/tests/objects/objects.php | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/engine/tests/objects/entities.php b/engine/tests/objects/entities.php index 0827fa24a..336e2f30d 100644 --- a/engine/tests/objects/entities.php +++ b/engine/tests/objects/entities.php @@ -19,6 +19,7 @@ class ElggCoreEntityTest extends ElggCoreUnitTest { * Called after each test method. */ public function tearDown() { + $this->swallowErrors(); unset($this->entity); } diff --git a/engine/tests/objects/objects.php b/engine/tests/objects/objects.php index de3c2f1c4..632ff4c38 100644 --- a/engine/tests/objects/objects.php +++ b/engine/tests/objects/objects.php @@ -27,6 +27,7 @@ class ElggCoreObjectTest extends ElggCoreUnitTest { * Called after each test method. */ public function tearDown() { + $this->swallowErrors(); unset($this->entity); } @@ -37,9 +38,6 @@ class ElggCoreObjectTest extends ElggCoreUnitTest { parent::__destruct(); } - /** - * A basic test that will be called and fail. - */ public function testElggObjectConstructor() { $attributes = array(); $attributes['guid'] = ''; |