aboutsummaryrefslogtreecommitdiff
path: root/engine/tests/objects/entities.php
diff options
context:
space:
mode:
authorBrett Profitt <brett.profitt@gmail.com>2012-05-10 16:01:09 -0700
committerBrett Profitt <brett.profitt@gmail.com>2012-05-10 16:01:09 -0700
commit77a8a97f7d320b03727b6d1a4b3fe6c0c2d40469 (patch)
tree8d664b6a776a7005fddc48d61b07c052f553d053 /engine/tests/objects/entities.php
parentacd2c9a08b623bda5b372942ce4c55b789b4ce56 (diff)
downloadelgg-77a8a97f7d320b03727b6d1a4b3fe6c0c2d40469.tar.gz
elgg-77a8a97f7d320b03727b6d1a4b3fe6c0c2d40469.tar.bz2
Refs #2776. Cleaned up ElggEntity::setMetaData().
Diffstat (limited to 'engine/tests/objects/entities.php')
-rw-r--r--engine/tests/objects/entities.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/tests/objects/entities.php b/engine/tests/objects/entities.php
index a4dc7946c..248b85c9e 100644
--- a/engine/tests/objects/entities.php
+++ b/engine/tests/objects/entities.php
@@ -98,7 +98,7 @@ class ElggCoreEntityTest extends ElggCoreUnitTest {
// check internal metadata array
$metadata = $this->entity->expose_metadata();
- $this->assertIdentical($metadata['existent'], 'testing');
+ $this->assertIdentical($metadata['existent'], array('testing'));
}
public function testElggEnityGetAndSetAnnotations() {