We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7871ce commit 4a8a037Copy full SHA for 4a8a037
src/test/java/org/typesense/api/Helper.java
@@ -226,5 +226,13 @@ public void teardown() throws Exception {
226
for (StopwordsSetSchema s : stopwords.getStopwords()) {
227
client.stopwords(s.getId()).delete();
228
}
229
+
230
+ try {
231
+ SynonymSetSchema[] synonymSets = client.synonymSets().retrieve();
232
+ for (SynonymSetSchema s : synonymSets) {
233
+ client.synonymSet(s.getName()).delete();
234
+ }
235
+ } catch (Exception e) {
236
237
238
0 commit comments