Merge pull request #3562 from nicoddemus/revert-callinfo-result

Revert change of Callinfo.result default value
This commit is contained in:
Ronny Pfannschmidt
2018-06-11 19:03:01 +02:00
committed by GitHub
2 changed files with 1 additions and 2 deletions

View File

@@ -194,7 +194,6 @@ class CallInfo(object):
#: "teardown", "memocollect"
self.when = when
self.start = time()
self.result = None
try:
self.result = func()
except KeyboardInterrupt:

View File

@@ -473,7 +473,7 @@ def test_callinfo():
assert "result" in repr(ci)
ci = runner.CallInfo(lambda: 0 / 0, "123")
assert ci.when == "123"
assert ci.result is None
assert not hasattr(ci, "result")
assert ci.excinfo
assert "exc" in repr(ci)