Skip to content

Commit

Permalink
Merge pull request #3534 from generalmimon/patch-1
Browse files Browse the repository at this point in the history
Fix the expected substring in ch11-01
  • Loading branch information
chriskrycho authored Apr 17, 2024
2 parents efb99cd + bfdfb30 commit 343c507
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/ch11-01-writing-tests.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 343c507

Please sign in to comment.