-
Your Name김승재 Question
참고로 실행환경은 KCLOUD VM 안이며 make fmt는 이미 완료한 상태입니다. If I run
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
Beta Was this translation helpful? Give feedback.
-
안녕하세요. 이로 인해
Hello. After reviewing your commit, it seems that the test case file in the As a result, even though the text itself remains the same, the test case fails due to a difference in the final bytes of the Please try using the original test case file to resolve the issue.
|
Beta Was this translation helpful? Give feedback.
안녕하세요.
확인해본 결과, 커밋 과정에서 기본으로 제공된
test
디렉터리의 테스트케이스 파일을 수정한 것으로 보입니다.아마도 코드 편집기나 포매터가 자동으로 개행 문자를 변경하면서, 원래
\n
(LF)였던 개행 문자가\r\n
(CRLF)로 수정된 것으로 추측됩니다.이로 인해
.expected
파일이 원본과 다르게 저장되었고, 문자 자체는 동일하더라도 마지막 바이트 차이로 인해 테스트케이스가 실패한 것입니다.해결을 위해 원본 테스트케이스 파일을 이용하여 시도하시길 바랍니다.
test/caesar1-enc.expected
)test/caesar1-enc.expected
)Hello.
After reviewing your commit, it seems that the test case file in the
test
directory has been modified.It is likely that your code editor or formatter automatically changed the line endings from
\n
(LF)…