File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ fn it_works() {
8282```
8383
8484` assert! ` is a macro provided by Rust which takes one argument: if the argument
85- is ` true ` , nothing happens. If the argument is false, it ` panic! ` s. Let's run
85+ is ` true ` , nothing happens. If the argument is ` false ` , it ` panic! ` s. Let's run
8686our tests again:
8787
8888``` bash
@@ -289,7 +289,7 @@ running 0 tests
289289test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured
290290```
291291
292- The ` --ignored ` argument is an argument to the test binary, and not to cargo ,
292+ The ` --ignored ` argument is an argument to the test binary, and not to Cargo ,
293293which is why the command is ` cargo test -- --ignored ` .
294294
295295# The ` tests ` module
@@ -367,7 +367,7 @@ It works!
367367The current convention is to use the ` tests ` module to hold your "unit-style"
368368tests. Anything that just tests one small bit of functionality makes sense to
369369go here. But what about "integration-style" tests instead? For that, we have
370- the ` tests ` directory
370+ the ` tests ` directory.
371371
372372# The ` tests ` directory
373373
You can’t perform that action at this time.
0 commit comments