Comment 48 for bug 1268480

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to python-glanceclient (master)

Reviewed: https://review.openstack.org/264256
Committed: https://git.openstack.org/cgit/openstack/python-glanceclient/commit/?id=c7fc0d6b1d7d2691d28a7d5f6b8dc5dab7204368
Submitter: Jenkins
Branch: master

commit c7fc0d6b1d7d2691d28a7d5f6b8dc5dab7204368
Author: LiuNanke <email address hidden>
Date: Thu Jan 7 00:23:05 2016 +0800

    Change assertTrue(isinstance()) by optimal assert

    assertTrue(isinstance(A, B)) or assertEqual(type(A), B) in tests
    should be replaced by assertIsInstance(A, B) provided by testtools.

    Change-Id: I7135d3b7fe15b16c17b7581e553ce5d289b58f43
    Related-bug: #1268480