From a455be55c56df3f667e4f23972894cb2f131dc35 Mon Sep 17 00:00:00 2001 From: Eileen McNaughton Date: Fri, 27 Jun 2014 15:12:04 +1200 Subject: [PATCH] comment fix --- tests/phpunit/CRM/Contact/BAO/GroupTest.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); } } -- 2.25.1