Skip to content

Commit

Permalink
Inverse quotes @ test_threadpool_invalid_threadrange param
Browse files Browse the repository at this point in the history
This makes it possible not to escape the internal ones.
  • Loading branch information
webknjaz authored Mar 17, 2023
1 parent 8a57a22 commit 6adafc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cheroot/test/test_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ def test_threadpool_threadrange_set(minthreads, maxthreads):
(1, 0, 'Expected an integer or the infinity value for the `max` argument but got 0.'),
(1, 0.5, 'Expected an integer or the infinity value for the `max` argument but got 0.5.'),
(2, 0, 'Expected an integer or the infinity value for the `max` argument but got 0.'),
(2, '1', 'Expected an integer or the infinity value for the `max` argument but got \'1\'.'),
(2, '1', "Expected an integer or the infinity value for the `max` argument but got '1'."),
(2, 1, 'max=1 must be > min=2'),
),
)
Expand Down

0 comments on commit 6adafc9

Please sign in to comment.