From e480ea928483c98fceab540926c24051650c45a8 Mon Sep 17 00:00:00 2001 From: Coleman Watts Date: Sat, 28 Sep 2013 14:04:39 -0700 Subject: [PATCH] CRM-13344 Update search test ---------------------------------------- * CRM-13344: Resolve test / schema issues around prefix_id, suffix_id, gender http://issues.civicrm.org/jira/browse/CRM-13344 --- tests/phpunit/CRM/Contact/BAO/QueryTestDataProvider.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/phpunit/CRM/Contact/BAO/QueryTestDataProvider.php b/tests/phpunit/CRM/Contact/BAO/QueryTestDataProvider.php index c48840fef0..1a8e0c772e 100644 --- a/tests/phpunit/CRM/Contact/BAO/QueryTestDataProvider.php +++ b/tests/phpunit/CRM/Contact/BAO/QueryTestDataProvider.php @@ -105,12 +105,12 @@ class CRM_Contact_BAO_QueryTestDataProvider implements Iterator { ), // prefix_id 2 = 'Ms.' array( - 'fv' => array('individual_prefix' => 2), + 'fv' => array('prefix_id' => 2), 'id' => array('10', '13'), ), // suffix_id 6 = 'V' array( - 'fv' => array('individual_suffix' => 6), + 'fv' => array('suffix_id' => 6), 'id' => array('16', '19', '20', '21'), ), ); -- 2.25.1