Skip to content

Commit

Permalink
Style fix.
Browse files Browse the repository at this point in the history
Signed-off-by: pieper <[email protected]>
  • Loading branch information
MikePieperSer committed Sep 27, 2023
1 parent 498c576 commit 431ab2f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,8 @@ public void testTermvectorsResponseOptionals() {
);

String str = toJson(response);
assertEquals("{\"found\":true,\"_id\":\"id\",\"_index\":\"index\",\"term_vectors\":{\"key1\":{\"terms\":{\"term1\":{\"score\":0.3}}}},\"took\":0}", str);
assertEquals("{\"found\":true,\"_id\":\"id\",\"_index\":\"index\","
+"\"term_vectors\":{\"key1\":{\"terms\":{\"term1\":{\"score\":0.3}}}},\"took\":0}", str);

final TermvectorsResponse response2 = fromJson(str, TermvectorsResponse._DESERIALIZER);
assertEquals(response.index(), response2.index());
Expand Down

0 comments on commit 431ab2f

Please sign in to comment.