summaryrefslogtreecommitdiff
path: root/tests/run/kwargproblems.pyx
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run/kwargproblems.pyx')
-rw-r--r--tests/run/kwargproblems.pyx2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run/kwargproblems.pyx b/tests/run/kwargproblems.pyx
index 88e3ac53a..7984fbb08 100644
--- a/tests/run/kwargproblems.pyx
+++ b/tests/run/kwargproblems.pyx
@@ -4,7 +4,7 @@ def test(**kw):
>>> d = {1 : 2}
>>> test(**d) # doctest: +ELLIPSIS
Traceback (most recent call last):
- TypeError: ...keywords must be strings
+ TypeError: ...keywords must be strings...
>>> d
{1: 2}
>>> d = {}