fixes for --filter=testSearchBuilderContacts WebTest_Contact_SearchBuilderTest
authorkurund <kurund@civicrm.org>
Tue, 13 Aug 2013 12:58:36 +0000 (18:28 +0530)
committerkurund <kurund@civicrm.org>
Tue, 13 Aug 2013 12:58:36 +0000 (18:28 +0530)
tests/phpunit/WebTest/Contact/SearchBuilderTest.php

index 1877a6e1fd6a52f052ee8d8489ae528786ef4e8b..849896772f00af7aad129c9681e3bc93c4541285 100644 (file)
@@ -196,14 +196,13 @@ class WebTest_Contact_SearchBuilderTest extends CiviSeleniumTestCase {
 
     $firstName8 = "abcc" . substr(sha1(rand()), 0, 7);
     $this->_createContact('Individual', $firstName8, "$firstName8@advsearch.co.in", NULL);
-    $this->_searchBuilder('Note(s): Body and Subject', "this is subject by $firstName8", $firstName8, 'LIKE');
     $this->_searchBuilder('Note(s): Body and Subject', "this is notes by $firstName8", $firstName8, 'LIKE');
     $this->_searchBuilder('Note(s): Subject only', "this is subject by $firstName8", $firstName8, 'LIKE');
     $this->_searchBuilder('Note(s): Body only', "this is notes by $firstName8", $firstName8, 'LIKE');
     $this->_advancedSearch("this is notes by $firstName8", $firstName8, NULL, NULL, 'note_body', 'notes');
     $this->_advancedSearch("this is subject by $firstName8", $firstName8, NULL, NULL, 'note_subject', 'notes');
     $this->_advancedSearch("this is notes by $firstName8", $firstName8, NULL, NULL, 'note_both', 'notes');
-    $this->_advancedSearch("this is subject by $firstName8", $firstName8, NULL, NULL, 'note_both', 'notes');
+    $this->_advancedSearch("this is notes by $firstName8", $firstName8, NULL, NULL, 'note_both', 'notes');
   }
 
   function _searchBuilder($field, $fieldValue = NULL, $name = NULL, $op = '=', $count = NULL) {