summaryrefslogtreecommitdiff
path: root/tests/run/callargs.pyx
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run/callargs.pyx')
-rw-r--r--tests/run/callargs.pyx8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/run/callargs.pyx b/tests/run/callargs.pyx
index 05f3f639b..c87f57962 100644
--- a/tests/run/callargs.pyx
+++ b/tests/run/callargs.pyx
@@ -168,15 +168,15 @@ def test_int_kwargs(f):
"""
>>> test_int_kwargs(e) # doctest: +ELLIPSIS
Traceback (most recent call last):
- TypeError: ...keywords must be strings
+ TypeError: ...keywords must be strings...
>>> test_int_kwargs(f) # doctest: +ELLIPSIS
Traceback (most recent call last):
- TypeError: ...keywords must be strings
+ TypeError: ...keywords must be strings...
>>> test_int_kwargs(g) # doctest: +ELLIPSIS
Traceback (most recent call last):
- TypeError: ...keywords must be strings
+ TypeError: ...keywords must be strings...
>>> test_int_kwargs(h) # doctest: +ELLIPSIS
Traceback (most recent call last):
- TypeError: ...keywords must be strings
+ TypeError: ...keywords must be strings...
"""
f(a=1,b=2,c=3, **{10:20,30:40})