summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/test/test_doctest2.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_doctest2.py b/Lib/test/test_doctest2.py
index 0cbe3d4..9a0e57c 100644
--- a/Lib/test/test_doctest2.py
+++ b/Lib/test/test_doctest2.py
@@ -87,10 +87,10 @@ class C(object):
>>> print C.clsm(22) # 18
22
- >>> print C().clsm(22) # 19
- 22
+ >>> print C().clsm(23) # 19
+ 23
"""
- return 22
+ return val
clsm = classmethod(clsm)