File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
src/test/java/com/meilisearch/sdk Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 77
88import com .meilisearch .sdk .model .Hybrid ;
99import com .meilisearch .sdk .model .MatchingStrategy ;
10- import org .junit .jupiter .api .Test ;
1110import org .json .JSONObject ;
11+ import org .junit .jupiter .api .Test ;
1212
1313class SearchRequestTest {
1414
@@ -429,8 +429,7 @@ void toStringWithHybridOnlyEmbedder() {
429429
430430 @ Test
431431 void toStringWithRetrieveVectors () {
432- SearchRequest searchRequest = new SearchRequest ("test" )
433- .setRetrieveVectors (true );
432+ SearchRequest searchRequest = new SearchRequest ("test" ).setRetrieveVectors (true );
434433 String result = searchRequest .toString ();
435434 JSONObject json = new JSONObject (result );
436435 assertThat (json .getBoolean ("retrieveVectors" ), is (true ));
You can’t perform that action at this time.
0 commit comments