Skip to content

Commit 6adafc9

Browse files
authored
Inverse quotes @ test_threadpool_invalid_threadrange param
This makes it possible not to escape the internal ones.
1 parent 8a57a22 commit 6adafc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cheroot/test/test_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ def test_threadpool_threadrange_set(minthreads, maxthreads):
490490
(1, 0, 'Expected an integer or the infinity value for the `max` argument but got 0.'),
491491
(1, 0.5, 'Expected an integer or the infinity value for the `max` argument but got 0.5.'),
492492
(2, 0, 'Expected an integer or the infinity value for the `max` argument but got 0.'),
493-
(2, '1', 'Expected an integer or the infinity value for the `max` argument but got \'1\'.'),
493+
(2, '1', "Expected an integer or the infinity value for the `max` argument but got '1'."),
494494
(2, 1, 'max=1 must be > min=2'),
495495
),
496496
)

0 commit comments

Comments
 (0)