Skip to content

Commit

Permalink
chore: (#77) 코드 컨벤션 정렬
Browse files Browse the repository at this point in the history
  • Loading branch information
woo-chang committed Jul 19, 2023
1 parent 9e7ab3a commit 3a0adfd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ public class QuerydslConfig {
public JPAQueryFactory jpaQueryFactory() {
return new JPAQueryFactory(entityManager);
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -51,19 +51,19 @@ class VoteRepositoryTest {
.member(member)
.build();

PostOption postOption1 = PostOption.builder()
.post(post1)
.sequence(1)
.content("content1")
.build();

Post post2 = Post.builder()
.postBody(PostBody.builder().title("title2").content("content2").build())
.deadline(
LocalDateTime.of(3023, 7, 12, 0, 0))
.member(member)
.build();

PostOption postOption1 = PostOption.builder()
.post(post1)
.sequence(1)
.content("content1")
.build();

PostOption postOption2 = PostOption.builder()
.post(post2)
.sequence(2)
Expand Down

0 comments on commit 3a0adfd

Please sign in to comment.