Skip to content

Commit 89842d3

Browse files
committed
Update expected output
1 parent c19f5bc commit 89842d3

2 files changed

Lines changed: 22 additions & 16 deletions

File tree

Doc/library/unittest.mock.rst

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2347,10 +2347,12 @@ chained call:
23472347
<MagicMock name='mock().method().other()()' id='...'>
23482348
>>> kall = call(1).method(arg='foo').other('bar')(2.0)
23492349
>>> kall.call_list()
2350-
[call(1),
2351-
call().method(arg='foo'),
2352-
call().method().other('bar'),
2353-
call().method().other()(2.0)]
2350+
[
2351+
call(1),
2352+
call().method(arg='foo'),
2353+
call().method().other('bar'),
2354+
call().method().other()(2.0),
2355+
]
23542356
>>> m.mock_calls == kall.call_list()
23552357
True
23562358

Lib/test/test_stable_abi_ctypes.py

Lines changed: 16 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)