From: Cash Costello Date: Fri, 18 Nov 2011 11:25:25 +0000 (-0500) Subject: Fixes #4114 checking type for acl test X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=9744fc8b3110553b4dd9f563fe17eef89fdeb830;p=lorea%2Felgg.git Fixes #4114 checking type for acl test --- diff --git a/engine/tests/api/access_collections.php b/engine/tests/api/access_collections.php index 0c37fa779..7875b1409 100644 --- a/engine/tests/api/access_collections.php +++ b/engine/tests/api/access_collections.php @@ -76,7 +76,7 @@ class ElggCoreAccessCollectionsTest extends ElggCoreUnitTest { $q = "SELECT * FROM {$this->dbPrefix}access_collections WHERE id = $acl_id"; $data = get_data($q); - $this->assertFalse($data); + $this->assertIdentical(array(), $data); } }