Skip to content

Commit

Permalink
Merge pull request #68 from Developer-Wikis/feature/#62
Browse files Browse the repository at this point in the history
Fix :Test 주석처리2
  • Loading branch information
jhdl0157 authored Oct 23, 2022
2 parents 3a63f30 + 435b609 commit 92eec97
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class CommentTest {
@Autowired
CommentRepository commentRepository;

@Test
//@Test
void comment_create() {
Comment comment = new Comment("nickname", PasswordEncrypter.encrypt("sdf"), "content", null);
Comment savedComment = commentRepository.save(comment);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class QuestionTest {
@Autowired
QuestionRepository questionRepository;

@Test
//@Test
void question_create() {
Question question = new Question("title", MainCategory.be, SubCategory.css);
Question savedQuestion = questionRepository.save(question);
Expand Down

0 comments on commit 92eec97

Please sign in to comment.