diff options
Diffstat (limited to 'Lib/unittest/mock.py')
-rw-r--r-- | Lib/unittest/mock.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/unittest/mock.py b/Lib/unittest/mock.py index 204b3e7..a8f74a9 100644 --- a/Lib/unittest/mock.py +++ b/Lib/unittest/mock.py @@ -2136,7 +2136,7 @@ class AsyncMockMixin(Base): # This is nearly just like super(), except for sepcial handling # of coroutines - _call = self.call_args + _call = _Call((args, kwargs), two=True) self.await_count += 1 self.await_args = _call self.await_args_list.append(_call) |