Merge pull request #1958 from martin-g/patch-1
Update unit testing output for additional test
diff --git a/src/testing/unit_testing.md b/src/testing/unit_testing.md
index 859647c..55a686e 100644
--- a/src/testing/unit_testing.md
+++ b/src/testing/unit_testing.md
@@ -155,7 +155,7 @@
```shell
$ cargo test
-running 3 tests
+running 4 tests
test tests::test_any_panic ... ok
test tests::test_divide ... ok
test tests::test_specific_panic ... ok
@@ -179,7 +179,7 @@
running 1 test
test tests::test_any_panic ... ok
-test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 2 filtered out
+test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 3 filtered out
Doc-tests tmp-test-should-panic
@@ -193,11 +193,12 @@
```shell
$ cargo test panic
-running 2 tests
+running 3 tests
test tests::test_any_panic ... ok
test tests::test_specific_panic ... ok
+test tests::test_specific_panic_shorthand ... ok
-test result: ok. 2 passed; 0 failed; 0 ignored; 0 measured; 1 filtered out
+test result: ok. 3 passed; 0 failed; 0 ignored; 0 measured; 1 filtered out
Doc-tests tmp-test-should-panic