From: Eileen McNaughton Date: Fri, 27 Jun 2014 03:12:04 +0000 (+1200) Subject: comment fix X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=a455be55c56df3f667e4f23972894cb2f131dc35;p=civicrm-core.git comment fix --- diff --git a/tests/phpunit/CRM/Contact/BAO/GroupTest.php b/tests/phpunit/CRM/Contact/BAO/GroupTest.php index 7d38c3e50f..17c67b4ce5 100644 --- a/tests/phpunit/CRM/Contact/BAO/GroupTest.php +++ b/tests/phpunit/CRM/Contact/BAO/GroupTest.php @@ -133,7 +133,7 @@ class CRM_Contact_BAO_GroupTest extends CiviUnitTestCase { * SELECT * FROM civicrm_saved_search WHERE mapping_id = @mappingID; * SELECT g.* FROM civicrm_saved_search s LEFT JOIN civicrm_group g ON g.saved_search_id = s.id WHERE mapping_id = @mappingID; * - * Copy the output to a single xml file and place in the SavedSearchDataSets folder - use the group number as the prefix. + * Copy the output to a single sql file and place in the SavedSearchDataSets folder - use the group number as the prefix. * Try to keep as much of the real world irregular glory as you can! Don't change the table ids to be number 1 as this can hide errors */ function testGroupData() { @@ -142,6 +142,7 @@ class CRM_Contact_BAO_GroupTest extends CiviUnitTestCase { $group = new CRM_Contact_BAO_Group(); $group->id = $groupID; $group->find(TRUE); + CRM_Contact_BAO_GroupContactCache::load($group, TRUE); } }