From 56902f8cd4fdd4c964835f75a8a6aef2885a829d Mon Sep 17 00:00:00 2001 From: codetrotter <36199671+ctsrc@users.noreply.github.com> Date: Sat, 17 Jun 2023 11:07:13 +0200 Subject: [PATCH] Correct output in README Output incorrectly said running 4 tests. Real output says running 3 tests. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c94d505..63cd020 100644 --- a/README.md +++ b/README.md @@ -49,12 +49,12 @@ Output from `cargo test` for this example: ```sh $ cargo test -running 4 tests +running 3 tests test tests::multiplication_tests::when_both_operands_are_negative ... ok test tests::multiplication_tests::when_both_operands_are_positive ... ok test tests::multiplication_tests::when_operands_are_swapped ... ok -test result: ok. 4 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out +test result: ok. 3 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s ``` ## MSRV Policy