summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorPhil MacKay <pmackay@eddyfi.com>2021-08-02 13:07:34 -0400
committerPhil MacKay <pmackay@eddyfi.com>2021-08-02 13:07:34 -0400
commitf2c83011ca1f536b7e04049720f73aec3ab60555 (patch)
tree6310a9450e5fe7090edf1ae027f58ef73e720343 /tests
parent355f590648646d8e992200cfb5f6570d4a97e52d (diff)
downloadmore-itertools-f2c83011ca1f536b7e04049720f73aec3ab60555.tar.gz
Fix the new chunked unit test (strict True with n None) to actually call the function to test.
Diffstat (limited to 'tests')
-rw-r--r--tests/test_more.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_more.py b/tests/test_more.py
index c05cc65..2d126aa 100644
--- a/tests/test_more.py
+++ b/tests/test_more.py
@@ -144,7 +144,7 @@ class ChunkedTests(TestCase):
return list(mi.chunked('ABCDE', None, strict=True))
self.assertRaisesRegex(
- ValueError, "n must not be None when using strict mode."
+ ValueError, "n must not be None when using strict mode.", f
)