Skip to content

Commit

Permalink
fix: put logined user on top of the list
Browse files Browse the repository at this point in the history
  • Loading branch information
aiaiaiai1 committed Jul 25, 2024
1 parent 3fd182a commit 1c8ab17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/gymmi/integration/WorkspaceIntegrationTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -572,8 +572,8 @@ class 워크스페이스_나가기 {
.statusCode(200)
.body("workers[0].rank", Matchers.equalTo(1))
.body("workers[1].rank", Matchers.equalTo(1))
.body("workers[0].isCreator", Matchers.equalTo(true))
.body("workers[1].isCreator", Matchers.equalTo(false))
.body("workers[0].isCreator", Matchers.equalTo(false))
.body("workers[1].isCreator", Matchers.equalTo(true))
.body("workers[0].isMyself", Matchers.equalTo(true))
.body("workers[1].isMyself", Matchers.equalTo(false));

Expand Down

0 comments on commit 1c8ab17

Please sign in to comment.