mock.assert_called_once() is a no-op that tests nothing. Instead
mock.assert_called_once_with() should be used (or use
assertEqual(1, mock_obj.call_count) if you don't want to check
parameters).
Borrowed HACKING rule from Davanum Srinivas's nova patch to
prevent it from appearing again.
Reviewed: https:/ /review. openstack. org/123430 /git.openstack. org/cgit/ openstack/ neutron/ commit/ ?id=e40c2ed58ce 998fc5aba83ffae 8ebefec9403c3b
Committed: https:/
Submitter: Jenkins
Branch: master
commit e40c2ed58ce998f c5aba83ffae8ebe fec9403c3b
Author: Jacek Swiderski <email address hidden>
Date: Tue Sep 23 14:35:06 2014 +0200
mock. assert_ called_ once() is not a valid method
mock. assert_ called_ once() is a no-op that tests nothing. Instead assert_ called_ once_with( ) should be used (or use call_count) if you don't want to check
mock.
assertEqual(1, mock_obj.
parameters).
Borrowed HACKING rule from Davanum Srinivas's nova patch to
prevent it from appearing again.
Change-Id: Idac1d3c89c07e1 3c9a209663f4e55 7fcb7547821
Closes-Bug: #1365751
Closes-Bug: #1300265