Skip to content

Commit

Permalink
Format backend
Browse files Browse the repository at this point in the history
  • Loading branch information
ManuelMoeri committed Jan 30, 2025
1 parent 27e8070 commit cab42b1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import static ch.puzzle.okr.Constants.BACKLOG_QUARTER_LABEL;
import static ch.puzzle.okr.test.TestConstants.BACK_LOG_QUARTER_ID;
import static org.mockito.ArgumentMatchers.any;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,11 @@ private static List<Overview> createOverviews() {
return createOverviews(authorizationUser);
}

private static Quarter normalQuarter = Quarter.Builder.builder().withId(QUARTER_ID).withLabel("GJ 22/23-Q2").build();
private static Quarter normalQuarter = Quarter.Builder
.builder()
.withId(QUARTER_ID)
.withLabel("GJ 22/23-Q2")
.build();

private static List<Overview> createOverviews(AuthorizationUser authorizationUser) {
long index = 1L;
Expand Down

0 comments on commit cab42b1

Please sign in to comment.