Comment 70 for bug 1268480

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

Reviewed: https://review.openstack.org/264245
Committed: https://git.openstack.org/cgit/openstack/python-manilaclient/commit/?id=1a9d0b713dd6e4a990d60ab81de9e57cf1845292
Submitter: Jenkins
Branch: master

commit 1a9d0b713dd6e4a990d60ab81de9e57cf1845292
Author: LiuNanke <email address hidden>
Date: Thu Jan 7 00:03:25 2016 +0800

    Replace assertTrue(isinstance()) with assertIsInstance()

    Some of tests use different method of assertTrue(isinstance(A, B)) or
    assertEqual(type(A), B). The correct way is to use assertIsInstance(A,
    B) provided by testtools.
    There has one more place should be modified.
    Closes-bug: #1268480

    Change-Id: I05d1b75289e193a32bd4d0ba0557af3fad686880