From f11f97377c8aea05e932f09ee2fccb6116fe7387 Mon Sep 17 00:00:00 2001 From: kurund Date: Wed, 7 Aug 2013 16:24:10 +0530 Subject: [PATCH] fixes due to change to prefix/suffix/gender --- .../CRM/Contact/BAO/QueryTestDataProvider.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/phpunit/CRM/Contact/BAO/QueryTestDataProvider.php b/tests/phpunit/CRM/Contact/BAO/QueryTestDataProvider.php index 800eb545e5..1a8e0c772e 100644 --- a/tests/phpunit/CRM/Contact/BAO/QueryTestDataProvider.php +++ b/tests/phpunit/CRM/Contact/BAO/QueryTestDataProvider.php @@ -98,19 +98,19 @@ class CRM_Contact_BAO_QueryTestDataProvider implements Iterator { ), ), - // gender_id 1 + // gender_id 1 = 'Female' array( - 'fv' => array('gender' => 'Female'), + 'fv' => array('gender_id' => 1), 'id' => array('9', '20', '22'), ), - // prefix_id 2 + // prefix_id 2 = 'Ms.' array( - 'fv' => array('individual_prefix' => 'Ms.'), + 'fv' => array('prefix_id' => 2), 'id' => array('10', '13'), ), - // suffix_id 2 + // suffix_id 6 = 'V' array( - 'fv' => array('individual_suffix' => 'V'), + 'fv' => array('suffix_id' => 6), 'id' => array('16', '19', '20', '21'), ), ); -- 2.25.1