Skip to content

Commit

Permalink
test(MeetingServiceTest): Clock 상수 선언 줄바꿈 컨벤션 적
Browse files Browse the repository at this point in the history
  • Loading branch information
ikjo39 committed Aug 4, 2024
1 parent dcc14ef commit 45d152f
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,9 @@
@SpringBootTest(webEnvironment = WebEnvironment.NONE)
class MeetingServiceTest {

private static final Clock FIXED_CLOCK =
Clock.fixed(Instant.parse("2024-08-01T10:15:30Z"), ZoneId.of("Asia/Seoul"));
private static final Clock FIXED_CLOCK = Clock.fixed(
Instant.parse("2024-08-01T10:15:30Z"), ZoneId.of("Asia/Seoul")
);

@SpyBean
private Clock clock;
Expand Down

0 comments on commit 45d152f

Please sign in to comment.