From: Johan Vervloet Date: Thu, 15 Jun 2017 21:21:06 +0000 (+0200) Subject: PHP 5.3. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=1ae9446b70f5f5d57f2fc1dee49b274b3df2fb13;p=civicrm-core.git PHP 5.3. --- diff --git a/tests/phpunit/api/v3/EventTest.php b/tests/phpunit/api/v3/EventTest.php index 3d3987072d..1abeb53bef 100644 --- a/tests/phpunit/api/v3/EventTest.php +++ b/tests/phpunit/api/v3/EventTest.php @@ -421,7 +421,7 @@ class api_v3_EventTest extends CiviUnitTestCase { // Search for events having NULL as the value for this custom // field. This should return all events created in setUp. $check = $this->callAPISuccess($this->_entity, 'get', array( - 'custom_' . $ids['custom_field_id'] => ['IS NULL' => 1], + 'custom_' . $ids['custom_field_id'] => array('IS NULL' => 1), )); $this->assertGreaterThan(0, $check['count']);