Skip to content

Commit

Permalink
test: fix test code
Browse files Browse the repository at this point in the history
  • Loading branch information
aiaiaiai1 committed Nov 25, 2024
1 parent 3825d61 commit 020d0f4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ class WorkspaceQueryServiceTest extends IntegrationTest {
WorkoutConfirmationOrObjectionResponse response1 = responses.get(1);
assertThat(response1.getNickname()).isEqualTo(creator.getNickname());
assertThat(response1.getProfileImageUrl()).isEqualTo(creator.getProfileImageName());
assertThat(response1.getWorkoutConfirmationId()).isEqualTo(null);
assertThat(response1.getWorkoutConfirmationId()).isEqualTo(objection.getWorkoutConfirmation().getId());
assertThat(response1.getObjectionId()).isEqualTo(objection.getId());
assertThat(response1.getIsMine()).isEqualTo(false);
assertThat(response1.getIsObjection()).isEqualTo(true);
Expand Down

0 comments on commit 020d0f4

Please sign in to comment.