diff options
| author | 2024-12-05 16:19:57 +0100 | |
|---|---|---|
| committer | 2024-12-05 16:19:57 +0100 | |
| commit | 3b15f8a5c9c919235c34518d14d09b41cfb93884 (patch) | |
| tree | 31678e94b161903e236dff5870962081f017ded5 /tests | |
| parent | 84642037350393625f0a4866ed74f564ef37973b (diff) | |
Parentheses in quoted search (#7055)
* Parentheses in quoted search
Allow parentheses in quoted search like `author:"Bob (Team1)"`
Related to https://github.com/FreshRSS/FreshRSS/pull/7054
* Doc
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/app/Models/SearchTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/app/Models/SearchTest.php b/tests/app/Models/SearchTest.php index 7c03d5aed..04da65d3a 100644 --- a/tests/app/Models/SearchTest.php +++ b/tests/app/Models/SearchTest.php @@ -370,7 +370,7 @@ class SearchTest extends PHPUnit\Framework\TestCase { ['%Alice%', '%hello%', '%Bob%', '%world%'], ], [ - 'intitle:"\\(test\\)"', + 'intitle:"(test)"', '(e.title LIKE ? )', ['%(test)%'], ], |
