Merge pull request #3534 from generalmimon/patch-1

Fix the expected substring in ch11-01
This commit is contained in:
Chris Krycho 2024-04-17 16:20:03 -06:00 committed by GitHub
commit 343c507f78
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 4 deletions

View File

@ -497,10 +497,10 @@ This time when we run the `should_panic` test, it will fail:
```
The failure message indicates that this test did indeed panic as we expected,
but the panic message did not include the expected string `'Guess value must be
less than or equal to 100'`. The panic message that we did get in this case was
`Guess value must be greater than or equal to 1, got 200.` Now we can start
figuring out where our bug is!
but the panic message did not include the expected string `less than or equal
to 100`. The panic message that we did get in this case was `Guess value must
be greater than or equal to 1, got 200.` Now we can start figuring out where
our bug is!
### Using `Result<T, E>` in Tests