Comment 2 for bug 1418508

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

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

commit 13b5a5ade126b39c683f3f81968b9350fc0f6ba2
Author: Kamil Rykowski <email address hidden>
Date: Thu Feb 5 12:56:00 2015 +0100

    Remove redundant FakeSchemaAPI __init__ method

    Currently, the FakeSchemaAPI in tests/utils has an overriden __init__
    method which simply calls super of FakeAPI and doesn't perform any extra
    operations. This is redundant, because same effect will be achieved when
    __init__ definition is omitted in FakeSchemaAPI. Additionally it uses
    'cls' as first param instead of 'self' which breaks naming convention.

    Change-Id: I3e72adfbc7b67076748f640d74507ff28c6060d7
    Closes-Bug: 1418508