aboutsummaryrefslogtreecommitdiff
path: root/tests/app
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2024-12-05 16:19:57 +0100
committerGravatar GitHub <noreply@github.com> 2024-12-05 16:19:57 +0100
commit3b15f8a5c9c919235c34518d14d09b41cfb93884 (patch)
tree31678e94b161903e236dff5870962081f017ded5 /tests/app
parent84642037350393625f0a4866ed74f564ef37973b (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/app')
-rw-r--r--tests/app/Models/SearchTest.php2
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)%'],
],