Skip to content

Commit 9fd9d68

Browse files
committed
ACP2E-464: Remove wildcard and LIKE operator and replace with equal operator in customer grid filter search
1 parent 49cf10c commit 9fd9d68

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Filter/TextFilterConfigProviderTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,17 +48,17 @@ public function getConfigDataProvider(): array
4848
'grid_filter_condition_type' => 1
4949
],
5050
[
51-
'conditionType' => 'eq',
52-
'valueExpression' => null
51+
'conditionType' => 'like',
52+
'valueExpression' => '%s%%',
5353
]
5454
],
5555
[
5656
[
5757
'grid_filter_condition_type' => 2
5858
],
5959
[
60-
'conditionType' => 'like',
61-
'valueExpression' => '%s%%'
60+
'conditionType' => 'eq',
61+
'valueExpression' => null
6262
]
6363
]
6464
];

0 commit comments

Comments
 (0)