]> git.mxchange.org Git - friendica.git/blobdiff - tests/include/ApiTest.php
#6275 - q support hashtag search
[friendica.git] / tests / include / ApiTest.php
index d328c4cb5586dd7e6b13985875d6bd871d418972..458d98599a4e29ea228307fbd8a82793918ef779 100644 (file)
@@ -1390,20 +1390,6 @@ class ApiTest extends DatabaseTest
                }
        }
 
-       /**
-        * Test the api_search() function with friendica_tag 
-        * @return void
-        */
-       public function testApiSearchWithFriendicaTag()
-       {
-               $_REQUEST['friendica_tag'] = 'friendica';
-               $result = api_search('json');
-               foreach ($result['status'] as $status) {
-                       $this->assertStatus($status);
-                       $this->assertContains('#friendica', $status['text'], null, true);
-               }
-       }
-
        /**
         * Test the api_search() function with an rpp parameter.
         * @return void