We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49df303 commit d5b0d99Copy full SHA for d5b0d99
opengrok-web/src/test/java/org/opengrok/web/api/v1/controller/HistoryControllerTest.java
@@ -132,7 +132,8 @@ void testHistoryGet() throws Exception {
132
.queryParam("start", start)
133
.request()
134
.get();
135
- HistoryDTO history = response.readEntity(new GenericType<>() {});
+ HistoryDTO history = response.readEntity(new GenericType<>() {
136
+ });
137
assertNotNull(history);
138
assertEquals(size, history.getEntries().size());
139
assertEquals("Kryštof Tulinger <krystof.tulinger@oracle.com>", history.getEntries().get(0).getAuthor());
0 commit comments