Comment 17 for bug 1544522

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to python-openstackclient (master)

Reviewed: https://review.openstack.org/282188
Committed: https://git.openstack.org/cgit/openstack/python-openstackclient/commit/?id=48681af86a1dfd50a8e90a9d7cd9068417cc52a9
Submitter: Jenkins
Branch: master

commit 48681af86a1dfd50a8e90a9d7cd9068417cc52a9
Author: Tang Chen <email address hidden>
Date: Fri Feb 19 13:44:54 2016 +0800

    Don't use Mock.called_once_with that does not exist

    Class mock.Mock does not exist method "called_once_with()", it just
    exists method "assert_called_once_with()". "called_once_with()" does
    nothing because it's a mock object.

    In OSC, only one place is still using "called_once_with()". Fix it.

    Change-Id: Ib890e95d775c3fc43df80fa05c82d726e78cdac8
    Partial Bug: 1544522