Skip to content

Commit d5b0d99

Browse files
committed
fix style
1 parent 49df303 commit d5b0d99

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

opengrok-web/src/test/java/org/opengrok/web/api/v1/controller/HistoryControllerTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,8 @@ void testHistoryGet() throws Exception {
132132
.queryParam("start", start)
133133
.request()
134134
.get();
135-
HistoryDTO history = response.readEntity(new GenericType<>() {});
135+
HistoryDTO history = response.readEntity(new GenericType<>() {
136+
});
136137
assertNotNull(history);
137138
assertEquals(size, history.getEntries().size());
138139
assertEquals("Kryštof Tulinger <[email protected]>", history.getEntries().get(0).getAuthor());

0 commit comments

Comments
 (0)