diff options
Diffstat (limited to 'tests/www')
-rw-r--r-- | tests/www/searchTest.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/www/searchTest.php b/tests/www/searchTest.php index 81eb2cc..e783a49 100644 --- a/tests/www/searchTest.php +++ b/tests/www/searchTest.php @@ -16,13 +16,13 @@ class www_SearchTest extends TestBaseApi $res = $this->getRequest('/all/foo+bar')->send(); $this->assertSelectCount( '.xfolkentry', true, $res->getBody(), - 'No bookmark found' + 'No bookmark found', false ); $res = $this->getRequest('/all/baz+bat')->send(); $this->assertSelectCount( '.xfolkentry', false, $res->getBody(), - 'Bookmarks found' + 'Bookmarks found', false ); } @@ -38,13 +38,13 @@ class www_SearchTest extends TestBaseApi $res = $this->getRequest('/all/foo bar')->send(); $this->assertSelectCount( '.xfolkentry', true, $res->getBody(), - 'No bookmark found' + 'No bookmark found', false ); $res = $this->getRequest('/all/baz bat')->send(); $this->assertSelectCount( '.xfolkentry', false, $res->getBody(), - 'Bookmarks found' + 'Bookmarks found', false ); } |