Skip to content

Commit 5a3a8c2

Browse files
author
github-actions
committed
chore: Java 스타일 수정
1 parent a1263ee commit 5a3a8c2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

backend/src/test/java/io/f1/backend/domain/game/app/RoomServiceTests.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
import io.f1.backend.domain.user.entity.User;
1616
import io.f1.backend.global.util.SecurityUtils;
1717

18-
import java.util.Collections;
1918
import lombok.extern.slf4j.Slf4j;
2019

2120
import org.junit.jupiter.api.AfterEach;
@@ -31,6 +30,7 @@
3130

3231
import java.time.LocalDateTime;
3332
import java.util.ArrayList;
33+
import java.util.Collections;
3434
import java.util.List;
3535
import java.util.Optional;
3636
import java.util.concurrent.CountDownLatch;
@@ -144,7 +144,8 @@ void exitRoom_synchronized() throws Exception {
144144
executorService.submit(
145145
() -> {
146146
try {
147-
UserPrincipal principal = new UserPrincipal(user, Collections.emptyMap());
147+
UserPrincipal principal =
148+
new UserPrincipal(user, Collections.emptyMap());
148149
SecurityUtils.setAuthentication(user);
149150
log.info("room.getHost().getId() = {}", room.getHost().getId());
150151
roomService.exitRoom(roomId, sessionId, principal);

0 commit comments

Comments
 (0)