Skip to content

Commit 02c4e2c

Browse files
committed
format: remove redundant whitespace
1 parent e2f9275 commit 02c4e2c

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

src/test/java/io/weaviate/client/v1/data/model/WeaviateObjectAdapterTest.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@
1414
import com.jparams.junit4.data.DataMethod;
1515

1616
@RunWith(JParamsTestRunner.class)
17+
/**
18+
* Test that WeaviateObject vectors are de-/serialized correctly. Specifically,
19+
* single- and multi-vectors should be correctly combined under the "vectors"
20+
* key in case any named vectors are present.
21+
*/
1722
public class WeaviateObjectAdapterTest {
1823
private static final Gson gson = new GsonBuilder()
1924
.registerTypeAdapter(WeaviateObject.class, WeaviateObject.Adapter.INSTANCE)
@@ -69,6 +74,5 @@ private void assertSameJson(String got, String want) {
6974
JsonElement gotEl = JsonParser.parseString(got);
7075
JsonElement wantEl = JsonParser.parseString(want);
7176
Assertions.assertThat(gotEl).isEqualTo(wantEl);
72-
7377
}
7478
}

0 commit comments

Comments
 (0)