Comment 50 for bug 1586268

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

Reviewed: https://review.openstack.org/359293
Committed: https://git.openstack.org/cgit/openstack/panko/commit/?id=02d16e5f70d55173089832a4284ab75dbc4376a4
Submitter: Jenkins
Branch: master

commit 02d16e5f70d55173089832a4284ab75dbc4376a4
Author: Hanxi <email address hidden>
Date: Tue Aug 23 20:48:43 2016 +0800

    Base.Model not define __ne__() built-in function

    Class base.Model defines __eq__() built-in function, but does
    not define __ne__() built-in function, so self.assertEqual works
    but self.assertNotEqual does not work at all in this test case in
    python2. This patch fixes it.

    Change-Id: I22e6b8e067638e148923e7a72aa8bfdc5f29b6df
    Closes-Bug: #1586268