File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
backend/src/test/java/io/f1/backend/domain/game/app Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 1515import io .f1 .backend .domain .user .entity .User ;
1616import io .f1 .backend .global .util .SecurityUtils ;
1717
18- import java .util .Collections ;
1918import lombok .extern .slf4j .Slf4j ;
2019
2120import org .junit .jupiter .api .AfterEach ;
3130
3231import java .time .LocalDateTime ;
3332import java .util .ArrayList ;
33+ import java .util .Collections ;
3434import java .util .List ;
3535import java .util .Optional ;
3636import 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 );
You can’t perform that action at this time.
0 commit comments