Skip to content

Commit

Permalink
test: add missing parentheses to undefined checks in tests (#245)
Browse files Browse the repository at this point in the history
  • Loading branch information
YuHyeonWook committed Sep 12, 2024
1 parent dc0bb4b commit cf8eee1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ describe('disassembleCompleteCharacter', () => {
});

it('완전한 한글 문자열이 아니면 undefined를 반환해야 합니다.', () => {
expect(disassembleCompleteCharacter('ㄱ')).toBeUndefined;
expect(disassembleCompleteCharacter('ㅏ')).toBeUndefined;
expect(disassembleCompleteCharacter('ㄱ')).toBeUndefined();
expect(disassembleCompleteCharacter('ㅏ')).toBeUndefined();
});
});

0 comments on commit cf8eee1

Please sign in to comment.