Skip to content

Commit

Permalink
fix: typo (#312)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruce0203 authored Jan 2, 2024
1 parent 448eeac commit 16c5311
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions second-edition/src/ch11-02-running-tests.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
또 다른 해결책은 테스트를 한 번에 하나씩만 실행하는 것입니다.

만일 여러분이 테스트들을 병렬적으로 실행하고 싶지 않을 경우, 혹은 여러분이 사용되는 스레드의 개수에
대한 더 정밀한 제어를 하고 싶을 경우, 여러분은 `--test-threads` 플리그와 테스트 바이너리에서
대한 더 정밀한 제어를 하고 싶을 경우, 여러분은 `--test-threads` 플래그 테스트 바이너리에서
사용하고 싶은 스레드 개수를 넘길 수 있습니다. 다음 예제를 봅시다:

```text
Expand Down Expand Up @@ -290,4 +290,4 @@ test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 1 filtered out

어떠한 테스트를 실행시킬지를 제어함으로써, 여러분은 `cargo test`의 결과가 빠르게 나오도록 확실히
할 수 있습니다. `ignored` 테스트들의 결과를 확인하기에 타당한 시점에 있고 해당 결과를 기다릴
시간을 가지고 있을 때, 여러분은 대신 `cargo test -- --ignored`를 실행시킬 수 있습니다.
시간을 가지고 있을 때, 여러분은 대신 `cargo test -- --ignored`를 실행시킬 수 있습니다.

0 comments on commit 16c5311

Please sign in to comment.