diff options
author | Arne de Laat <arne@delaat.net> | 2017-02-23 15:17:11 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2017-02-23 15:17:11 (GMT) |
commit | 55b82e10dc6b75b30a72fa56beb60eaf54a008d4 (patch) | |
tree | 1b79416c273ef5dd2c703fc8bc4cf83c3039f31b /Lib/unittest/mock.py | |
parent | 3cc5817cfaf5663645f4ee447eaed603d2ad290a (diff) | |
download | cpython-55b82e10dc6b75b30a72fa56beb60eaf54a008d4.zip cpython-55b82e10dc6b75b30a72fa56beb60eaf54a008d4.tar.gz cpython-55b82e10dc6b75b30a72fa56beb60eaf54a008d4.tar.bz2 |
bpo-28911: Clarify the behaviour of assert_called_once_with. (#252)
(cherry picked from commit 9d56b34af2efc4e266bf3ae62da5cd2e422a42be)
Diffstat (limited to 'Lib/unittest/mock.py')
-rw-r--r-- | Lib/unittest/mock.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/unittest/mock.py b/Lib/unittest/mock.py index b6b3836..5f97728 100644 --- a/Lib/unittest/mock.py +++ b/Lib/unittest/mock.py @@ -815,8 +815,8 @@ class NonCallableMock(Base): def assert_called_once_with(_mock_self, *args, **kwargs): - """assert that the mock was called exactly once and with the specified - arguments.""" + """assert that the mock was called exactly once and that that call was + with the specified arguments.""" self = _mock_self if not self.call_count == 1: msg = ("Expected '%s' to be called once. Called %s times." % |