Skip to content

Commit

Permalink
Update SearchDefaultDialectTest.java
Browse files Browse the repository at this point in the history
  • Loading branch information
sazzad16 authored Jan 29, 2025
1 parent 0350c2f commit 283bd1a
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.containsString;
import static org.hamcrest.Matchers.emptyOrNullString;
import static org.hamcrest.Matchers.is;
import static org.hamcrest.Matchers.not;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
Expand Down Expand Up @@ -106,7 +105,7 @@ public void testDialectsWithFTExplain() throws Exception {
.addTextField("t1", 1.0)
.addTextField("t2", 1.0)
.addNumericField("num");
assertThat(client.ftCreate(INDEX, IndexOptions.defaultOptions(), sc),is("OK"));
assertEquals("OK", client.ftCreate(INDEX, IndexOptions.defaultOptions(), sc));

client.hset("1", "t1", "hello");

Expand Down

0 comments on commit 283bd1a

Please sign in to comment.