Skip to content

Commit 94b6f73

Browse files
committed
Updated another test case
1 parent f47850c commit 94b6f73

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tests/Predis/Command/Redis/Search/FTSEARCH_Test.php

+1-4
Original file line numberDiff line numberDiff line change
@@ -212,17 +212,14 @@ public function testSearchJsonEmptyValues(): void
212212
usleep(10000);
213213

214214
$searchArgs = new SearchArguments();
215-
$searchArgs->dialect(5);
215+
$searchArgs->dialect(4);
216216

217217
$this->assertSame(
218218
[1, 'test:1', ['$', '[{"text_empty":""}]']],
219219
$redis->ftsearch('idx', '@text_empty:("")', $searchArgs)
220220
);
221221

222222
$this->expectException(ServerException::class);
223-
$this->expectExceptionMessage(
224-
'In order to query for empty values the field `text_not_empty` is required to be defined with `INDEXEMPTY`'
225-
);
226223

227224
$redis->ftsearch('idx', '@text_not_empty:("")', $searchArgs);
228225
}

0 commit comments

Comments
 (0)