Skip to content

Commit b13f76b

Browse files
committed
unwrap the line
1 parent 8b9e48c commit b13f76b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,7 @@ void testHistoryGet() throws Exception {
129129
.queryParam("start", start)
130130
.request()
131131
.get();
132-
HistoryDTO history = response.readEntity(new GenericType<>() {
133-
});
132+
HistoryDTO history = response.readEntity(new GenericType<>() {});
134133
assertNotNull(history);
135134
assertEquals(size, history.getEntries().size());
136135
assertEquals("Kryštof Tulinger <[email protected]>", history.getEntries().get(0).getAuthor());

0 commit comments

Comments
 (0)